Skip to content

Commit d0afaa6

Browse files
Bump actions/cache from 5.0.1 to 5.0.2 (#111)
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.1 to 5.0.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@9255dc7...8b402f5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8d54604 commit d0afaa6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/maven_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
java-version: 11
2222
distribution: 'temurin'
2323
- name: Cache and restore Maven packages on master
24-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
24+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
2525
if: ${{ github.ref_name == 'master' }}
2626
with:
2727
path: ~/.m2
2828
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
2929
restore-keys: ${{ runner.os }}-m2
3030
- name: Restore Maven packages on PR
31-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
31+
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
3232
if: ${{ github.ref_name != 'master' }}
3333
with:
3434
path: ~/.m2

.github/workflows/maven_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
java-version: 11
2424
distribution: 'temurin'
2525
- name: Cache and restore Maven packages on master
26-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
26+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
2727
if: ${{ github.ref_name == 'master' }}
2828
with:
2929
path: ~/.m2
3030
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
3131
restore-keys: ${{ runner.os }}-m2
3232
- name: Restore Maven packages on PR
33-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
33+
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
3434
if: ${{ github.ref_name != 'master' }}
3535
with:
3636
path: ~/.m2

0 commit comments

Comments
 (0)