-
Notifications
You must be signed in to change notification settings - Fork 10
48 lines (45 loc) · 1.11 KB
/
slither.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Slither Analysis
on:
pull_request:
push:
branches:
- develop
- main
- master
permissions:
contents: read
security-events: write
jobs:
analyze:
# disabled for now, since we don't have any Solidity files.
if: ${{ false }}
name: Run Slither
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get Diff
uses: technote-space/[email protected]
with:
PATTERNS: |
**/*.sol
- name: Node dependencies Install
run: |
cd contracts && npm i
cp -r node_modules/@openzeppelin .
- name: Run Slither Action
uses: crytic/[email protected]
continue-on-error: true
id: slither
with:
sarif: slither.sarif
target: contracts/
if: "env.GIT_DIFF"
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ steps.slither.outputs.sarif }}
if: "env.GIT_DIFF"