Skip to content

Commit 4f5bc26

Browse files
committed
fix(ci): remove non-existent sccache version parameter
The previous commit specified version v0.10.2 which doesn't exist, causing 404 errors when downloading sccache binaries. Removed the version parameter entirely - the action will now automatically use the latest stable release (currently v0.12.0). This fixes the workflow failures where sccache setup was failing with "Unexpected HTTP response: 404".
1 parent cf44616 commit 4f5bc26

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ jobs:
3838

3939
- name: Setup sccache
4040
uses: mozilla-actions/sccache-action@v0.0.9
41-
with:
42-
version: "v0.10.2"
4341

4442
- name: Install cargo-nextest
4543
uses: taiki-e/install-action@nextest
@@ -83,8 +81,6 @@ jobs:
8381

8482
- name: Setup sccache
8583
uses: mozilla-actions/sccache-action@v0.0.9
86-
with:
87-
version: "v0.10.2"
8884

8985
- name: Run clippy
9086
run: cargo clippy --all-targets --all-features -- -D warnings
@@ -121,8 +117,6 @@ jobs:
121117

122118
- name: Setup sccache
123119
uses: mozilla-actions/sccache-action@v0.0.9
124-
with:
125-
version: "v0.10.2"
126120

127121
- name: Build release
128122
run: cargo build --release --verbose

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,6 @@ jobs:
138138

139139
- name: Setup sccache
140140
uses: mozilla-actions/sccache-action@v0.0.9
141-
with:
142-
version: "v0.10.2"
143141

144142
# Install musl tools for Linux musl builds
145143
- name: Install musl tools (Linux musl only)

0 commit comments

Comments
 (0)