diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d11f5455..46bc2b76 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