Skip to content

Commit 9690808

Browse files
Bump actions/cache from 4 to 5 (#559)
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 3ad5507 commit 9690808

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/maven.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ jobs:
4747
cache: maven
4848

4949
- name: 'Cache Maven packages'
50-
uses: actions/cache@v4
50+
uses: actions/cache@v5
5151
with:
5252
path: ~/.m2
5353
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
5454
restore-keys: ${{ runner.os }}-m2
5555

5656
- name: Cache SonarCloud packages
57-
uses: actions/cache@v4
57+
uses: actions/cache@v5
5858
with:
5959
path: ~/.sonar/cache
6060
key: ${{ runner.os }}-sonar
@@ -117,7 +117,7 @@ jobs:
117117
cache: maven
118118

119119
- name: 'Cache Maven packages'
120-
uses: actions/cache@v4
120+
uses: actions/cache@v5
121121
with:
122122
path: ~/.m2
123123
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/sonar.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
cache: maven
6666

6767
- name: Cache SonarCloud packages
68-
uses: actions/cache@v4
68+
uses: actions/cache@v5
6969
with:
7070
path: ~/.sonar/cache
7171
key: ${{ runner.os }}-sonar

.github/workflows/stage_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
8585
8686
- name: 'Cache Maven packages'
87-
uses: actions/cache@v4
87+
uses: actions/cache@v5
8888
with:
8989
path: ~/.m2
9090
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)