Skip to content

Commit 2185208

Browse files
Bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7f04155 commit 2185208

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
1313

1414
- name: Cache local Maven repository
15-
uses: actions/cache@v3
15+
uses: actions/cache@v4
1616
with:
1717
path: ~/.m2/repository
1818
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
git push origin "${tag}"
6060
6161
- name: Cache local Maven repository
62-
uses: actions/cache@v3
62+
uses: actions/cache@v4
6363
with:
6464
path: ~/.m2/repository
6565
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)