Upgrade StaderOracle implementation (#258) #1001
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Slither Analysis | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
id-token: write | |
contents: write | |
security-events: write | |
statuses: write | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.github_token }} | |
- name: Run Slither | |
uses: crytic/[email protected] | |
id: slither | |
with: | |
node-version: 16 | |
sarif: results.sarif | |
fail-on: config | |
- if: failure() | |
uses: Ayrx/[email protected] | |
with: | |
sarif_file: ${{ steps.slither.outputs.sarif }} |