diff --git a/.github/workflows/rust-audit.yaml b/.github/workflows/rust-audit.yaml index ffde6636..8da1766b 100644 --- a/.github/workflows/rust-audit.yaml +++ b/.github/workflows/rust-audit.yaml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: rustsec/audit-check@v1.4.1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - ignore: "RUSTSEC-2023-0071" # Marvin attack (RSA) crate. Being worked on. + - name: Install cargo-audit + run: cargo install --force cargo-audit + - name: Run cargo-audit + run: cargo audit --ignore RUSTSEC-2023-0071 # Marvin attack (RSA) crate. Being worked on.