Skip to content

Commit 245af89

Browse files
authored
fix(ci): remove EmbarkStudios/cargo-deny-action (#495)
cargo-deny-action is broken: EmbarkStudios/cargo-deny-action#91 This change replaces the action with a manual invocation via the dev container image.
1 parent d213597 commit 245af89

File tree

1 file changed

+3
-16
lines changed

1 file changed

+3
-16
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,6 @@ jobs:
2222
- run: just rs-clippy
2323
- run: just rs-test-build
2424
- run: just rs-test
25-
26-
audit:
27-
timeout-minutes: 5
28-
runs-on: ubuntu-22.04
29-
strategy:
30-
matrix:
31-
checks:
32-
- advisories
33-
- bans licenses sources
34-
# Prevent sudden announcement of a new advisory from failing Ci.
35-
continue-on-error: ${{ matrix.checks == 'advisories' }}
36-
steps:
37-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
38-
- uses: EmbarkStudios/cargo-deny-action@0484eedcba649433ebd03d9b7c9c002746bbc4b9
39-
with:
40-
command: check ${{ matrix.checks }}
25+
- run: cargo deny --all-features check bans licenses sources
26+
- run: cargo deny --all-features check advisories
27+
continue-on-error: true

0 commit comments

Comments
 (0)