Skip to content

Merge branch 'master' into slither #6

Merge branch 'master' into slither

Merge branch 'master' into slither #6

Workflow file for this run

name: Slither Analysis
on: [push]
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@v3
- name: Use Node.js 19.6.0
uses: actions/setup-node@v3
with:
node-version: '19.6.0'
- name: Install dependencies
run: npm ci
- name: Run Slither
uses: crytic/slither-action@v0.3.0
id: slither
with:
sarif: results.sarif
fail-on: none
slither-args: --filter-paths "openzeppelin" --checklist --markdown-root ${{ github.server_url }}/${{ github.repository }}/blob/${{ github.sha }}/
target: contracts/
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ steps.slither.outputs.sarif }}