Skip to content

Commit 8a854c7

Browse files
authored
CI: disable security-audit cache (#1576)
We're encountering errors like: /home/runner/.cargo/bin/cargo-audit: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.39' not found (required by /home/runner/.cargo/bin/cargo-audit) These are occurring even with freshly-built binaries. To avoid blocking PRs, temporarily disable the build cache until we have time to properly investigate.
1 parent d2be079 commit 8a854c7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/security-audit.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ jobs:
2121
- uses: dtolnay/rust-toolchain@master
2222
with:
2323
toolchain: stable
24-
- uses: actions/cache@v4
25-
with:
26-
path: ~/.cargo/bin
27-
key: ${{ runner.os }}-cargo-audit-v0.20
24+
# TODO(tarcieri): investigate why cached binaries aren't working
25+
#- uses: actions/cache@v4
26+
# with:
27+
# path: ~/.cargo/bin
28+
# key: ${{ runner.os }}-cargo-audit-v0.20
2829
- uses: rustsec/audit-check@v2
2930
with:
3031
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)