Skip to content

Commit b606ed3

Browse files
Bump actions/cache from 4 to 5 (#3597)
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 37e576b commit b606ed3

13 files changed

Lines changed: 21 additions & 21 deletions

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
uses: actions/checkout@v6
139139

140140
- name: Cache Local Maven Repository
141-
uses: actions/cache@v4
141+
uses: actions/cache@v5
142142
with:
143143
path: ~/.m2/repository
144144
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/java-publish-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/checkout@v6
3737

3838
- name: Cache Local Maven Repository
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
4040
with:
4141
path: ~/.m2/repository
4242
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/maven4.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ jobs:
3535
- uses: actions/checkout@v6
3636

3737
- name: Cache Local Maven Repository
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ~/.m2/repository
4141
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
4242
restore-keys: |
4343
${{ runner.os }}-maven-
4444
4545
- name: Cache Maven 4 Build Cache
46-
uses: actions/cache@v4
46+
uses: actions/cache@v5
4747
with:
4848
path: ~/.m2/build-cache
4949
key: ${{ runner.os }}-maven-build-cache-${{ hashFiles('**/pom.xml') }}

.github/workflows/rat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v6
3333

3434
- name: Cache Local Maven Repository
35-
uses: actions/cache@v4
35+
uses: actions/cache@v5
3636
with:
3737
path: ~/.m2/repository
3838
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/spotless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/checkout@v6
3636

3737
- name: Cache Local Maven Repository
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ~/.m2/repository
4141
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/test-lang-c.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
pkg-config --libs avro-c
6262
6363
- name: Cache Local Maven Repository
64-
uses: actions/cache@v4
64+
uses: actions/cache@v5
6565
with:
6666
path: ~/.m2/repository
6767
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -121,7 +121,7 @@ jobs:
121121
libzstd-dev
122122
123123
- name: Cache Local Maven Repository
124-
uses: actions/cache@v4
124+
uses: actions/cache@v5
125125
with:
126126
path: ~/.m2/repository
127127
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/test-lang-csharp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
7.0.x
5656
8.0.x
5757
58-
- uses: actions/cache@v4
58+
- uses: actions/cache@v5
5959
with:
6060
path: ~/.nuget/packages
6161
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
@@ -91,7 +91,7 @@ jobs:
9191
8.0.x
9292
9393
- name: Cache Local Maven Repository
94-
uses: actions/cache@v4
94+
uses: actions/cache@v5
9595
with:
9696
path: ~/.m2/repository
9797
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/test-lang-java.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/checkout@v6
4848

4949
- name: 'Cache Local Maven Repository'
50-
uses: actions/cache@v4
50+
uses: actions/cache@v5
5151
with:
5252
path: ~/.m2/repository
5353
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -99,7 +99,7 @@ jobs:
9999
- uses: actions/checkout@v6
100100

101101
- name: 'Cache Local Maven Repository'
102-
uses: actions/cache@v4
102+
uses: actions/cache@v5
103103
with:
104104
path: ~/.m2/repository
105105
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/test-lang-js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
node-version: ${{ matrix.node }}
5353

54-
- uses: actions/cache@v4
54+
- uses: actions/cache@v5
5555
with:
5656
path: ~/.npm
5757
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -82,7 +82,7 @@ jobs:
8282
with:
8383
node-version: ${{ matrix.node }}
8484

85-
- uses: actions/cache@v4
85+
- uses: actions/cache@v5
8686
with:
8787
path: ~/.npm
8888
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/test-lang-perl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
Try::Tiny
107107
108108
- name: Cache Local Maven Repository
109-
uses: actions/cache@v4
109+
uses: actions/cache@v5
110110
with:
111111
path: ~/.m2/repository
112112
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)