Skip to content

Commit 8d77057

Browse files
chore(deps): bump actions/cache from 4 to 5 (apache#3279)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4fba74e commit 8d77057

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/pr_build_linux.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
jdk-version: 17 # JDK only needed for common module proto generation
7979

8080
- name: Restore Cargo cache
81-
uses: actions/cache/restore@v4
81+
uses: actions/cache/restore@v5
8282
with:
8383
path: |
8484
~/.cargo/registry
@@ -103,7 +103,7 @@ jobs:
103103
retention-days: 1
104104

105105
- name: Save Cargo cache
106-
uses: actions/cache/save@v4
106+
uses: actions/cache/save@v5
107107
if: github.ref == 'refs/heads/main'
108108
with:
109109
path: |
@@ -129,7 +129,7 @@ jobs:
129129
jdk-version: 17
130130

131131
- name: Restore Cargo cache
132-
uses: actions/cache/restore@v4
132+
uses: actions/cache/restore@v5
133133
with:
134134
path: |
135135
~/.cargo/registry
@@ -144,7 +144,7 @@ jobs:
144144
uses: ./.github/actions/rust-test
145145

146146
- name: Save Cargo cache
147-
uses: actions/cache/save@v4
147+
uses: actions/cache/save@v5
148148
if: github.ref == 'refs/heads/main'
149149
with:
150150
path: |
@@ -292,7 +292,7 @@ jobs:
292292

293293
# Restore cargo registry cache (for any cargo commands that might run)
294294
- name: Cache Cargo registry
295-
uses: actions/cache@v4
295+
uses: actions/cache@v5
296296
with:
297297
path: |
298298
~/.cargo/registry
@@ -334,7 +334,7 @@ jobs:
334334
path: native/target/release/
335335

336336
- name: Cache Maven dependencies
337-
uses: actions/cache@v4
337+
uses: actions/cache@v5
338338
with:
339339
path: |
340340
~/.m2/repository
@@ -345,7 +345,7 @@ jobs:
345345
346346
- name: Cache TPC-H data
347347
id: cache-tpch
348-
uses: actions/cache@v4
348+
uses: actions/cache@v5
349349
with:
350350
path: ./tpch
351351
key: tpch-${{ hashFiles('.github/workflows/pr_build_linux.yml') }}
@@ -390,7 +390,7 @@ jobs:
390390
path: native/target/release/
391391

392392
- name: Cache Maven dependencies
393-
uses: actions/cache@v4
393+
uses: actions/cache@v5
394394
with:
395395
path: |
396396
~/.m2/repository
@@ -401,7 +401,7 @@ jobs:
401401
402402
- name: Cache TPC-DS data
403403
id: cache-tpcds
404-
uses: actions/cache@v4
404+
uses: actions/cache@v5
405405
with:
406406
path: ./tpcds-sf-1
407407
key: tpcds-${{ hashFiles('.github/workflows/pr_build_linux.yml') }}

.github/workflows/pr_build_macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
protoc-architecture: aarch_64
7979

8080
- name: Restore Cargo cache
81-
uses: actions/cache/restore@v4
81+
uses: actions/cache/restore@v5
8282
with:
8383
path: |
8484
~/.cargo/registry
@@ -103,7 +103,7 @@ jobs:
103103
retention-days: 1
104104

105105
- name: Save Cargo cache
106-
uses: actions/cache/save@v4
106+
uses: actions/cache/save@v5
107107
if: github.ref == 'refs/heads/main'
108108
with:
109109
path: |
@@ -233,7 +233,7 @@ jobs:
233233

234234
# Restore cargo registry cache (for any cargo commands that might run)
235235
- name: Cache Cargo registry
236-
uses: actions/cache@v4
236+
uses: actions/cache@v5
237237
with:
238238
path: |
239239
~/.cargo/registry

.github/workflows/spark_sql_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
jdk-version: 17
7070

7171
- name: Restore Cargo cache
72-
uses: actions/cache/restore@v4
72+
uses: actions/cache/restore@v5
7373
with:
7474
path: |
7575
~/.cargo/registry
@@ -92,7 +92,7 @@ jobs:
9292
retention-days: 1
9393

9494
- name: Save Cargo cache
95-
uses: actions/cache/save@v4
95+
uses: actions/cache/save@v5
9696
if: github.ref == 'refs/heads/main'
9797
with:
9898
path: |

0 commit comments

Comments
 (0)