From d1ad2df2bd7be30a3990e76facb7d26a8f91668a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 23:42:58 +0000 Subject: [PATCH] chore(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](https://github.com/actions/cache/compare/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] --- .github/workflows/container_app_pr.yml | 2 +- .github/workflows/maven_cache_management.yml | 2 +- .github/workflows/spi_release.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/container_app_pr.yml b/.github/workflows/container_app_pr.yml index a2c134070b0..d8c0db11d57 100644 --- a/.github/workflows/container_app_pr.yml +++ b/.github/workflows/container_app_pr.yml @@ -27,7 +27,7 @@ jobs: with: java-version: "21" distribution: 'adopt' - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/maven_cache_management.yml b/.github/workflows/maven_cache_management.yml index b84c09ba01a..f66fc4d08b9 100644 --- a/.github/workflows/maven_cache_management.yml +++ b/.github/workflows/maven_cache_management.yml @@ -62,7 +62,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Save the common cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.COMMON_CACHE_PATH }} key: ${{ env.COMMON_CACHE_KEY }} diff --git a/.github/workflows/spi_release.yml b/.github/workflows/spi_release.yml index feda533c856..1bec1e28639 100644 --- a/.github/workflows/spi_release.yml +++ b/.github/workflows/spi_release.yml @@ -45,7 +45,7 @@ jobs: server-id: central server-username: MAVEN_USERNAME server-password: MAVEN_PASSWORD - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} @@ -68,7 +68,7 @@ jobs: with: java-version: '21' distribution: 'adopt' - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}