Skip to content

Commit

Permalink
CI: attempt to fix cargo-audit (#638)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tarcieri authored Oct 12, 2024
1 parent 5ab6215 commit b3900ec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/security-audit.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 }}

0 comments on commit b3900ec

Please sign in to comment.