Skip to content

🚑 Update Slither workflow to include SARIF file upload #13

🚑 Update Slither workflow to include SARIF file upload

🚑 Update Slither workflow to include SARIF file upload #13

Workflow file for this run

name: Slither Analysis
on: [push]
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Slither
uses: crytic/[email protected]
id: slither
with:
sarif: results.sarif
fail-on: medium
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ steps.slither.outputs.sarif }}