From 59ff0cd20e57e10cf0f2b784e40dfdf06c3ba4db Mon Sep 17 00:00:00 2001 From: John Sirois Date: Sun, 17 Mar 2024 16:11:44 -0700 Subject: [PATCH] Stabilize cargo audit. (#203) The previous incantation both kept cargo-audit back and did not use its lock. This was the worst of both worlds and led to an audit job break. --- .github/workflows/audit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index acd8ed3..328d357 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -12,5 +12,5 @@ jobs: uses: actions/checkout@v4 - name: Cargo audit (for security vulnerabilities) run: | - cargo install --version 0.18.1 cargo-audit + cargo install --locked cargo-audit cargo audit