We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d7cd16 commit 355f2b3Copy full SHA for 355f2b3
.github/workflows/test.yml
@@ -39,7 +39,10 @@ jobs:
39
components: rustfmt, clippy
40
41
- name: Install cargo-cache
42
- run: cargo install cargo-cache
+ # Use --locked to pin to the exact dependency versions in cargo-cache's Cargo.lock
43
+ # This prevents pulling in newer transitive dependencies (like home@0.5.12)
44
+ # that require rustc 1.88, ensuring compatibility with our rustc 1.86 toolchain
45
+ run: cargo install cargo-cache --locked
46
47
- uses: actions/cache@v3
48
with:
0 commit comments