Skip to content

Commit 47c8893

Browse files
dependabot[bot]dfa1
authored andcommitted
build(deps): Bump actions/cache from 5 to 6
Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 2f9f02c commit 47c8893

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
java-version: ${{ matrix.java-version }}
2727

2828
- name: Cache Maven repository
29-
uses: actions/cache@v5
29+
uses: actions/cache@v6
3030
with:
3131
path: ~/.m2/repository
3232
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/load.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
java-version: '25'
4040

4141
- name: Cache Maven repository
42-
uses: actions/cache@v5
42+
uses: actions/cache@v6
4343
with:
4444
path: ~/.m2/repository
4545
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/sonar.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
java-version: '25'
2626

2727
- name: Cache Maven repository
28-
uses: actions/cache@v5
28+
uses: actions/cache@v6
2929
with:
3030
path: ~/.m2/repository
3131
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
3232
restore-keys: |
3333
${{ runner.os }}-maven-
3434
3535
- name: Cache SonarCloud packages
36-
uses: actions/cache@v5
36+
uses: actions/cache@v6
3737
with:
3838
path: ~/.sonar/cache
3939
key: ${{ runner.os }}-sonar

0 commit comments

Comments
 (0)