Skip to content

Commit 4cbc21f

Browse files
Bump actions/cache from 3 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...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 3c62f29 commit 4cbc21f

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
distribution: 'temurin'
2424
- uses: actions/checkout@v4
2525
- name: Maven repository caching
26-
uses: actions/cache@v3
26+
uses: actions/cache@v5
2727
with:
2828
path: ~/.m2/repository
2929
key: gwc-integration-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
java-version: 17
2121
distribution: 'temurin'
2222
- name: Maven repository caching
23-
uses: actions/cache@v3
23+
uses: actions/cache@v5
2424
with:
2525
path: ~/.m2/repository
2626
key: gwc-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -42,7 +42,7 @@ jobs:
4242
java-version: 21
4343
distribution: 'temurin'
4444
- name: Maven repository caching
45-
uses: actions/cache@v3
45+
uses: actions/cache@v5
4646
with:
4747
path: ~/.m2/repository
4848
key: gwc-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -64,7 +64,7 @@ jobs:
6464
java-version: 25
6565
distribution: 'temurin'
6666
- name: Maven repository caching
67-
uses: actions/cache@v3
67+
uses: actions/cache@v5
6868
with:
6969
path: ~/.m2/repository
7070
key: gwc-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -87,7 +87,7 @@ jobs:
8787
java-version: 17
8888
distribution: 'temurin'
8989
- name: Maven repository caching
90-
uses: actions/cache@v3
90+
uses: actions/cache@v5
9191
with:
9292
path: ~/.m2/repository
9393
key: gwc-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
java-version: 17
2020
distribution: 'temurin'
2121
- name: Maven repository caching
22-
uses: actions/cache@v3
22+
uses: actions/cache@v5
2323
with:
2424
path: ~/.m2/repository
2525
key: gs-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
java-version: 17
2020
distribution: 'temurin'
2121
- name: Maven repository caching
22-
uses: actions/cache@v3
22+
uses: actions/cache@v5
2323
with:
2424
path: ~/.m2/repository
2525
key: gwc-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)