From ef24084ce7cf129bb914687701b1c5aae2dad6bf Mon Sep 17 00:00:00 2001 From: Kevin Guthrie Date: Fri, 1 Nov 2024 10:02:49 -0400 Subject: [PATCH] Fix the audit workflow by generating cargo lock during the audit process --- .github/workflows/audit.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 3342e15..81fafc3 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -22,6 +22,10 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Generate Cargo.lock + # https://github.com/rustsec/audit-check/issues/27 + run: cargo generate-lockfile + - name: Audit Check # https://github.com/rustsec/audit-check/issues/2 uses: rustsec/audit-check@master