From ba5e3d29de3a575e011a8f1708b8f5f66e327b13 Mon Sep 17 00:00:00 2001 From: josh rotenberg Date: Sat, 30 Mar 2024 15:55:41 -0700 Subject: [PATCH] fix(ci): upadte audit action to use rustsec version (#56) --- template/.github/workflows/audit.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/template/.github/workflows/audit.yml b/template/.github/workflows/audit.yml index 64ad0c5..ae5fa22 100644 --- a/template/.github/workflows/audit.yml +++ b/template/.github/workflows/audit.yml @@ -16,11 +16,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 - # Ensure that the latest version of Cargo is installed - - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@stable - - uses: Swatinem/rust-cache@v2 - - uses: actions-rs/audit-check@v1 + - name: Run security audit + uses: rustsec/audit-check@v1.4.1 with: token: ${{ secrets.GITHUB_TOKEN }} {% endraw %}