File tree 2 files changed +30
-3
lines changed
2 files changed +30
-3
lines changed Original file line number Diff line number Diff line change 9
9
name : Test
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v3
13
13
- uses : actions-rs/toolchain@v1
14
14
with :
15
15
toolchain : nightly
23
23
name : Code format
24
24
runs-on : ubuntu-latest
25
25
steps :
26
- - uses : actions/checkout@v2
26
+ - uses : actions/checkout@v3
27
27
- uses : actions-rs/toolchain@v1
28
28
with :
29
29
toolchain : nightly
41
41
permissions : write-all
42
42
runs-on : ubuntu-latest
43
43
steps :
44
- - uses : actions/checkout@v2
44
+ - uses : actions/checkout@v3
45
45
- uses : actions-rs/toolchain@v1
46
46
with :
47
47
components : clippy
Original file line number Diff line number Diff line change
1
+ name : Security Audit
2
+
3
+ on :
4
+ schedule :
5
+ # Runs at 00:00 UTC everyday
6
+ - cron : ' 0 0 * * *'
7
+ push :
8
+ paths :
9
+ - ' **/Cargo.toml'
10
+ - ' **/Cargo.lock'
11
+ pull_request :
12
+
13
+ jobs :
14
+ security_audit :
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - name : Checkout repository
18
+ uses : actions/checkout@v3
19
+ - name : Install Rust
20
+ uses : actions-rs/toolchain@v1
21
+ with :
22
+ toolchain : nightly
23
+ profile : minimal
24
+ override : true
25
+ -
uses :
actions-rs/[email protected]
26
+ with :
27
+ token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments