Skip to content

chore(deps): bump actions/upload-artifact from 4.4.0 to 4.4.3 #44

chore(deps): bump actions/upload-artifact from 4.4.0 to 4.4.3

chore(deps): bump actions/upload-artifact from 4.4.0 to 4.4.3 #44

Workflow file for this run

name: Slither Analysis
on: [push]
permissions:
contents: read
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Use Node.js 19.6.0
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: '19.6.0'
- name: Install dependencies
run: npm ci
- name: Run Slither
uses: crytic/slither-action@6ef3a33e56de4e8f59488cf60858b5c1bf4967c0 # v0.3.0
id: slither
with:
sarif: results.sarif
fail-on: none
target: .
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@461ef6c76dfe95d5c364de2f431ddbd31a417628 # v3.26.9
with:
sarif_file: ${{ steps.slither.outputs.sarif }}