From 0784b29ffc354a05c2b492b1c67209bc6fa2e5e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20L=C3=B6nnhager?= Date: Mon, 9 Sep 2024 13:43:20 +0200 Subject: [PATCH] Ignore RUSTSEC-2024-0370 in audit workflow --- .github/workflows/cargo-audit.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cargo-audit.yml b/.github/workflows/cargo-audit.yml index e3f44a3b96cb..69dce45e199e 100644 --- a/.github/workflows/cargo-audit.yml +++ b/.github/workflows/cargo-audit.yml @@ -29,7 +29,9 @@ jobs: # Ignored audit issues. This list should be kept short, and effort should be # put into removing items from the list. # RUSTSEC-2023-0079 - KyberSlash in `pqc_kyber`. - ignore: RUSTSEC-2023-0079 + # RUSTSEC-2024-0370 - `proc-macro-error` is unmaintained. + # `nftnl 0.6.2` uses `proc-macro-error`. + ignore: RUSTSEC-2023-0079,RUSTSEC-2024-0370 - uses: actions-rust-lang/audit@v1.1.11 name: Audit testrunner Rust Dependencies @@ -39,4 +41,6 @@ jobs: # Ignored audit issues. This list should be kept short, and effort should be # put into removing items from the list. # RUSTSEC-2023-0079 - KyberSlash in `pqc_kyber`. - ignore: RUSTSEC-2023-0079 + # RUSTSEC-2024-0370 - `proc-macro-error` is unmaintained. + # `nftnl 0.6.2` uses `proc-macro-error`. + ignore: RUSTSEC-2023-0079,RUSTSEC-2024-0370