From e1cf28b2833f9cc00ce00991fabe7f58ce86ddec Mon Sep 17 00:00:00 2001 From: Phuong Nguyen Date: Tue, 9 Jul 2024 00:39:47 -0700 Subject: [PATCH] Ignore RUSTSEC-2024-0344 for fastauth --- .github/workflows/unit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 938f5e794..3cefdc46e 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -77,7 +77,7 @@ jobs: - name: Run Audit (FastAuth) working-directory: integration-tests/fastauth run: | - cargo audit --ignore RUSTSEC-2020-0071 --ignore RUSTSEC-2023-0052 --ignore RUSTSEC-2022-0093 --ignore RUSTSEC-2023-0071 --ignore RUSTSEC-2024-0019 + cargo audit --ignore RUSTSEC-2020-0071 --ignore RUSTSEC-2023-0052 --ignore RUSTSEC-2022-0093 --ignore RUSTSEC-2023-0071 --ignore RUSTSEC-2024-0019 --ignore RUSTSEC-2024-0344 - name: Run Audit (Chain Signatures) # even if previous audit step fails, run this audit step to ensure all crates are audited if: always()