File tree 4 files changed +29
-43
lines changed
4 files changed +29
-43
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Audit
2
+
3
+ on :
4
+ push :
5
+ paths :
6
+ - ' **/Cargo.toml'
7
+ - ' **/Cargo.lock'
8
+ pull_request :
9
+ branches :
10
+ - main
11
+ schedule :
12
+ - cron : ' 12 13 2 * *'
13
+
14
+ jobs :
15
+ audit :
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - name : Checkout
19
+ uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
20
+
21
+ - name : Install cargo audit
22
+ uses : actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
23
+ with :
24
+ command : install
25
+ args : --force cargo-audit
26
+
27
+ - name : Audit
28
+ run : cargo audit --deny warnings
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 13
13
14
14
strategy :
15
15
matrix :
16
- rust : [1.74.1, stable]
16
+ rust : [stable]
17
17
os : [ubuntu-latest]
18
18
19
19
env :
You can’t perform that action at this time.
0 commit comments