From 556c5d40729d294e73ef9ccba0ba1fa2bbcf3fc5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 04:25:49 +0000 Subject: [PATCH] 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](https://github.com/actions/cache/compare/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] --- .github/workflows/java-ci-secure.yml | 2 +- .github/workflows/java-ci-universal.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/java-ci-secure.yml b/.github/workflows/java-ci-secure.yml index 31ba739..703b6b3 100644 --- a/.github/workflows/java-ci-secure.yml +++ b/.github/workflows/java-ci-secure.yml @@ -149,7 +149,7 @@ jobs: distribution: 'temurin' - name: 📦 Cache Maven dependencies - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/java-ci-universal.yml b/.github/workflows/java-ci-universal.yml index fd084df..e86a2df 100644 --- a/.github/workflows/java-ci-universal.yml +++ b/.github/workflows/java-ci-universal.yml @@ -197,7 +197,7 @@ jobs: - name: 📦 Setup Maven (if using Maven) if: needs.validate-inputs.outputs.build-tool-validated == 'maven' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} @@ -205,7 +205,7 @@ jobs: - name: 📦 Setup Gradle (if using Gradle) if: needs.validate-inputs.outputs.build-tool-validated == 'gradle' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches