From 811592031b8c9b33736b656f1343a8773b154b08 Mon Sep 17 00:00:00 2001 From: Saulius Grigaitis Date: Mon, 23 Dec 2024 14:23:29 +0200 Subject: [PATCH] Fix build --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d11f5455..012267f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,8 @@ jobs: if: runner.os == 'Linux' run: scripts/ci/consensus-spec-tests-coverage.rb # Ignore RUSTSEC-2023-0071 because we don't use RSA in `jwt-simple` - - name: Run cargo audit (Linux) - if: runner.os == 'Linux' - run: cargo audit --ignore RUSTSEC-2024-0370 --ignore RUSTSEC-2023-0071 + - uses: actions-rust-lang/audit@v1 + name: Audit Rust Dependencies + with: + # Comma separated list of issues to ignore + ignore: RUSTSEC-2024-0370 --ignore RUSTSEC-2023-0071