File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 14
14
- uses : actions/checkout@v3
15
15
with :
16
16
submodules : recursive
17
+ token : ${{ secrets.CI_PAT }}
17
18
- name : Install Foundry
18
19
uses : onbjerg/foundry-toolchain@v1
19
20
with :
26
27
- uses : actions/checkout@v3
27
28
with :
28
29
submodules : recursive
30
+ token : ${{ secrets.CI_PAT }}
31
+
29
32
- name : Install Foundry
30
33
uses : foundry-rs/foundry-toolchain@v1
31
34
with :
Original file line number Diff line number Diff line change @@ -3,15 +3,18 @@ name: Slither Analysis
3
3
# temporarily disabled because of the action bug
4
4
on :
5
5
push :
6
- branches : [ master ]
6
+ branches : [master]
7
7
pull_request :
8
- branches : [ master ]
8
+ branches : [master]
9
9
10
10
jobs :
11
11
analyze-core :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- uses : actions/checkout@v3
15
+ with :
16
+ submodules : recursive
17
+ token : ${{ secrets.CI_PAT }}
15
18
16
19
- name : Install Foundry
17
20
uses : onbjerg/foundry-toolchain@v1
@@ -20,14 +23,14 @@ jobs:
20
23
21
24
- name : Install dependencies
22
25
run : forge install
23
-
26
+
24
27
- name : Run Slither core
25
28
26
29
continue-on-error : true
27
30
id : slither
28
31
with :
29
- target : " src/core"
30
- slither-config : " slither.config.json"
32
+ target : ' src/core'
33
+ slither-config : ' slither.config.json'
31
34
solc-version : 0.8.17
32
35
sarif : results.sarif
33
36
fail-on : none
You can’t perform that action at this time.
0 commit comments