Skip to content

Commit 8840e45

Browse files
build(deps): Bump actions/cache from 4 to 5 (#2438)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 38a9c3e commit 8840e45

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

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

5353
- name: maven cache
54-
uses: actions/cache@v4
54+
uses: actions/cache@v5
5555
with:
5656
path: ~/.m2
5757
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -125,7 +125,7 @@ jobs:
125125
name: checkout
126126

127127
- name: maven cache
128-
uses: actions/cache@v4
128+
uses: actions/cache@v5
129129
with:
130130
path: ~/.m2
131131
key: ${{ runner.os }}-m2-tck-${{ matrix.tck-version }}-${{ hashFiles('**/pom.xml') }}

.github/workflows/publish-tck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
ref: ${{ inputs.version }}
3131

3232
- name: maven cache
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
with:
3535
path: ~/.m2
3636
key: ${{ runner.os }}-m2-tck-${{ matrix.tck-version }}-${{ hashFiles('**/pom.xml') }}

.github/workflows/sonar.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,14 @@ jobs:
9191
java-version: 17
9292

9393
- name: Cache SonarCloud packages
94-
uses: actions/cache@v4
94+
uses: actions/cache@v5
9595
with:
9696
path: ~/.sonar/cache
9797
key: ${{ runner.os }}-sonar
9898
restore-keys: ${{ runner.os }}-sonar
9999

100100
- name: Cache Maven packages
101-
uses: actions/cache@v4
101+
uses: actions/cache@v5
102102
with:
103103
path: ~/.m2
104104
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)