do not warn about known audit errors
This commit is contained in:
parent
e78b6dd33d
commit
f25d18c53b
1 changed files with 6 additions and 1 deletions
7
.github/workflows/rust.yml
vendored
7
.github/workflows/rust.yml
vendored
|
|
@ -51,7 +51,12 @@ jobs:
|
|||
- name: Install cargo-audit
|
||||
run: cargo install cargo-audit --locked
|
||||
- name: Run cargo-audit
|
||||
run: cargo audit --deny warnings
|
||||
run: |
|
||||
cargo audit --deny warnings \
|
||||
--ignore RUSTSEC-2025-0052 \
|
||||
--ignore RUSTSEC-2024-0384 \
|
||||
--ignore RUSTSEC-2024-0436 \
|
||||
--ignore RUSTSEC-2025-0134
|
||||
|
||||
clippy:
|
||||
name: Clippy
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue