Skip to content

Commit 281321f

Browse files
authored
Merge branch 'main' into gnu-cache
2 parents 3a08f79 + d3d16d9 commit 281321f

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/CICD.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ jobs:
12151215
uses: lima-vm/lima-actions/setup@v1
12161216
id: lima-actions-setup
12171217
- name: Cache ~/.cache/lima
1218-
uses: actions/cache@v4
1218+
uses: actions/cache@v5
12191219
with:
12201220
path: ~/.cache/lima
12211221
key: lima-${{ steps.lima-actions-setup.outputs.version }}

.github/workflows/GnuTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ jobs:
264264
uses: lima-vm/lima-actions/setup@v1
265265
id: lima-actions-setup
266266
- name: Cache ~/.cache/lima
267-
uses: actions/cache@v4
267+
uses: actions/cache@v5
268268
with:
269269
path: ~/.cache/lima
270270
key: lima-${{ steps.lima-actions-setup.outputs.version }}

.github/workflows/android.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
free -mh
8686
df -Th
8787
- name: Restore AVD cache
88-
uses: actions/cache/restore@v4
88+
uses: actions/cache/restore@v5
8989
id: avd-cache
9090
continue-on-error: true
9191
with:
@@ -127,7 +127,7 @@ jobs:
127127
util/android-commands.sh init "${{ matrix.arch }}" "${{ matrix.api-level }}" "${{ env.TERMUX }}"
128128
- name: Save AVD cache
129129
if: steps.avd-cache.outputs.cache-hit != 'true'
130-
uses: actions/cache/save@v4
130+
uses: actions/cache/save@v5
131131
with:
132132
path: |
133133
~/.android/avd/*
@@ -143,7 +143,7 @@ jobs:
143143
trim: true
144144
- name: Restore rust cache
145145
id: rust-cache
146-
uses: actions/cache/restore@v4
146+
uses: actions/cache/restore@v5
147147
with:
148148
path: ~/__rust_cache__
149149
# The version vX at the end of the key is just a development version to avoid conflicts in
@@ -184,7 +184,7 @@ jobs:
184184
df -Th
185185
- name: Save rust cache
186186
if: steps.rust-cache.outputs.cache-hit != 'true'
187-
uses: actions/cache/save@v4
187+
uses: actions/cache/save@v5
188188
with:
189189
path: ~/__rust_cache__
190190
key: ${{ matrix.arch }}_${{ matrix.target}}_${{ steps.read_rustc_hash.outputs.content }}_${{ hashFiles('**/Cargo.toml', '**/Cargo.lock') }}_v3

.github/workflows/code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ jobs:
255255
run: npm install -g cspell
256256

257257
- name: Cache pre-commit environments
258-
uses: actions/cache@v4
258+
uses: actions/cache@v5
259259
with:
260260
path: ~/.cache/pre-commit
261261
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}

.github/workflows/fuzzing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
shared-key: "cargo-fuzz-cache-key"
111111
cache-directories: "fuzz/target"
112112
- name: Restore Cached Corpus
113-
uses: actions/cache/restore@v4
113+
uses: actions/cache/restore@v5
114114
with:
115115
key: corpus-cache-${{ matrix.test-target.name }}
116116
path: |
@@ -192,7 +192,7 @@ jobs:
192192
193193
echo "" >> $GITHUB_STEP_SUMMARY
194194
- name: Save Corpus Cache
195-
uses: actions/cache/save@v4
195+
uses: actions/cache/save@v5
196196
with:
197197
key: corpus-cache-${{ matrix.test-target.name }}
198198
path: |

0 commit comments

Comments
 (0)