From 43459d1818707be79bcf1c7bbeecaac379802af9 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Thu, 10 Oct 2024 15:31:52 -0700 Subject: [PATCH] ci: Use "v2.0.0" branch for audit check Signed-off-by: John Nunley --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8df25dd..8bfa2f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,7 +91,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + # rustsec/audit-check used to do this automatically + - name: Generate Cargo.lock + run: cargo generate-lockfile # https://github.com/rustsec/audit-check/issues/2 - - uses: rustsec/audit-check@master + - uses: rustsec/audit-check@v2.0.0 with: token: ${{ secrets.GITHUB_TOKEN }}