Skip to content

Commit da042c3

Browse files
mkhairifarhan-syah
authored andcommitted
fix(ci): correct cargo-deny flag order; clear RUSTSEC advisories
cargo-deny takes --exclude-dev before the subcommand; the audit job passed it after `check` and died on argument parsing, so the audit never actually ran. With it running, two advisories fail the build: RUSTSEC-2026-0204 (crossbeam-epoch 0.9.18 null-pointer deref in fmt::Display) and RUSTSEC-2026-0186 (memmap2 0.9.10 unchecked pointer offset). Lockfile bumped to crossbeam-epoch 0.9.20 and memmap2 0.9.11 per the advisories' guidance.
1 parent 1638f2a commit da042c3

2 files changed

Lines changed: 21 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,4 +266,4 @@ jobs:
266266
with:
267267
tool: cargo-deny
268268
- name: Run cargo-deny
269-
run: cargo deny check --exclude-dev
269+
run: cargo deny --exclude-dev check

Cargo.lock

Lines changed: 20 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)