Skip to content

Commit 556c5d4

Browse files
chore(deps): bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [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] <support@github.com>
1 parent 569a1d3 commit 556c5d4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/java-ci-secure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
distribution: 'temurin'
150150

151151
- name: 📦 Cache Maven dependencies
152-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
152+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
153153
with:
154154
path: ~/.m2
155155
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/java-ci-universal.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,15 +197,15 @@ jobs:
197197

198198
- name: 📦 Setup Maven (if using Maven)
199199
if: needs.validate-inputs.outputs.build-tool-validated == 'maven'
200-
uses: actions/cache@v4
200+
uses: actions/cache@v5
201201
with:
202202
path: ~/.m2
203203
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
204204
restore-keys: ${{ runner.os }}-m2
205205

206206
- name: 📦 Setup Gradle (if using Gradle)
207207
if: needs.validate-inputs.outputs.build-tool-validated == 'gradle'
208-
uses: actions/cache@v4
208+
uses: actions/cache@v5
209209
with:
210210
path: |
211211
~/.gradle/caches

0 commit comments

Comments
 (0)