Skip to content

Commit 04076ba

Browse files
committed
update audit workflow
1 parent e3840b6 commit 04076ba

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/audit.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
audit:
14-
needs: [security-audit, cargo-deny]
14+
needs: [cargo-deny] # security-audit,
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Done
@@ -21,6 +21,13 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@v2
24+
with:
25+
submodules: recursive
26+
- name: Install rust
27+
uses: actions-rs/toolchain@v1
28+
with:
29+
toolchain: 1.60.0
30+
override: true
2431
- uses: actions-rs/audit-check@v1
2532
with:
2633
token: ${{ secrets.GITHUB_TOKEN }}
@@ -36,8 +43,11 @@ jobs:
3643
- sources
3744
steps:
3845
- uses: actions/checkout@v2
46+
with:
47+
submodules: recursive
3948
- uses: EmbarkStudios/cargo-deny-action@v1
4049
with:
50+
rust-version: "1.60.0"
4151
command: check ${{ matrix.checks }} -s
4252
arguments: --all-features
4353
log-level: warn

0 commit comments

Comments
 (0)