Skip to content

Commit 0d0d54d

Browse files
dependabot[bot]mikehardy
authored andcommitted
build(deps): bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 6782027 commit 0d0d54d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build-quick.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154

155155
- name: Restore Rust Cache (Windows)
156156
id: rust-cache-windows
157-
uses: actions/cache/restore@v4
157+
uses: actions/cache/restore@v5
158158
if: contains(matrix.os, 'windows')
159159
with:
160160
path: |
@@ -172,7 +172,7 @@ jobs:
172172
173173
- name: Restore Rust Cache (Unix)
174174
id: rust-cache-unix
175-
uses: actions/cache/restore@v4
175+
uses: actions/cache/restore@v5
176176
if: contains(matrix.os, 'windows') == false
177177
with:
178178
path: |
@@ -292,7 +292,7 @@ jobs:
292292
path: video.webm
293293

294294
- name: Save Rust Cache (Windows)
295-
uses: actions/cache/save@v4
295+
uses: actions/cache/save@v5
296296
if: contains(matrix.os, 'windows') && github.ref == 'refs/heads/main'
297297
with:
298298
path: |
@@ -306,7 +306,7 @@ jobs:
306306
key: ${{ steps.rust-cache-windows.outputs.cache-primary-key }}
307307

308308
- name: Save Rust Cache (Unix)
309-
uses: actions/cache/save@v4
309+
uses: actions/cache/save@v5
310310
if: contains(matrix.os, 'windows') == false && github.ref == 'refs/heads/main'
311311
with:
312312
path: |

.github/workflows/build-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
7878
- name: Restore Rust Cache
7979
id: rust-cache
80-
uses: actions/cache/restore@v4
80+
uses: actions/cache/restore@v5
8181
with:
8282
path: |
8383
~/.cargo/registry
@@ -189,7 +189,7 @@ jobs:
189189
./gradlew rsdroid-testing:publishAllPublicationsToMavenCentral -Dorg.gradle.project.macCC=$ANKIDROID_MACOS_CC -DtestBuildType=debug -Dorg.gradle.daemon=false -Dorg.gradle.console=plain
190190
191191
- name: Save Rust Cache
192-
uses: actions/cache/save@v4
192+
uses: actions/cache/save@v5
193193
if: github.ref == 'refs/heads/main'
194194
with:
195195
path: |

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122

123123
- name: Restore Rust Cache (Unix)
124124
if: matrix.build-mode == 'manual'
125-
uses: actions/cache/restore@v4
125+
uses: actions/cache/restore@v5
126126
with:
127127
path: |
128128
~/.cargo/registry

0 commit comments

Comments
 (0)