From c9f43d0892205ba493d23fa1c1610b648b9c754e Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 12 Oct 2024 07:38:02 -0600 Subject: [PATCH] CI: attempt to fix cargo-audit Previously getting the following error: /home/runner/.cargo/bin/cargo-audit: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory This busts the cache to see if that helps --- .github/workflows/security-audit.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/security-audit.yml b/.github/workflows/security-audit.yml index 41ca7060..09485e6a 100644 --- a/.github/workflows/security-audit.yml +++ b/.github/workflows/security-audit.yml @@ -1,7 +1,9 @@ name: Security Audit on: pull_request: - paths: Cargo.lock + paths: + - Cargo.lock + - .github/workflows/security-audit.yml push: branches: master paths: Cargo.lock @@ -18,7 +20,7 @@ jobs: uses: actions/cache@v4 with: path: ~/.cargo/bin - key: ${{ runner.os }}-cargo-audit-v0.12 + key: ${{ runner.os }}-cargo-audit-v0.20 - uses: actions-rs/audit-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }}