File tree Expand file tree Collapse file tree 2 files changed +39
-23
lines changed Expand file tree Collapse file tree 2 files changed +39
-23
lines changed Original file line number Diff line number Diff line change @@ -199,29 +199,6 @@ jobs:
199199 - name : Run benchmarks
200200 run : ./benchmark.py
201201
202- dependecy-scanner :
203- name : Scan dependencies for vulnerabilities
204- runs-on : ubuntu-latest
205- env :
206- KITTY_BUNDLE : 1
207- steps :
208- - name : Checkout source code
209- uses : actions/checkout@v5
210- with :
211- fetch-depth : 10
212- persist-credentials : false
213-
214- - name : Checkout bypy
215- uses : actions/checkout@v5
216- with :
217- fetch-depth : 1
218- persist-credentials : false
219- repository : kovidgoyal/bypy
220- path : bypy-src
221-
222- - name : Check dependencies
223- run : python3 .github/workflows/ci.py check-dependencies
224-
225202 linux-dev :
226203 name : Test ./dev.sh and benchmark
227204 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1+ name : Depscan
2+ on :
3+ push :
4+ branches : [master]
5+ schedule :
6+ - cron : ' 0 12 * * 5'
7+
8+ env :
9+ CI : ' true'
10+ ASAN_OPTIONS : detect_leaks=0
11+ LC_ALL : en_US.UTF-8
12+ LANG : en_US.UTF-8
13+
14+ permissions :
15+ contents : read # to fetch code (actions/checkout)
16+
17+ jobs :
18+ dependecy-scanner :
19+ name : Scan dependencies for vulnerabilities
20+ runs-on : ubuntu-latest
21+ env :
22+ KITTY_BUNDLE : 1
23+ steps :
24+ - name : Checkout source code
25+ uses : actions/checkout@v5
26+ with :
27+ fetch-depth : 10
28+ persist-credentials : false
29+
30+ - name : Checkout bypy
31+ uses : actions/checkout@v5
32+ with :
33+ fetch-depth : 1
34+ persist-credentials : false
35+ repository : kovidgoyal/bypy
36+ path : bypy-src
37+
38+ - name : Check dependencies
39+ run : python3 .github/workflows/ci.py check-dependencies
You can’t perform that action at this time.
0 commit comments