From 33823ef2e8317a8c7d7502b6ba095061124bcd53 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jun 2026 10:34:42 +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) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [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/docker-ci.yml | 2 +- .github/workflows/maven.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-ci.yml b/.github/workflows/docker-ci.yml index cdda2b4..1359a4f 100644 --- a/.github/workflows/docker-ci.yml +++ b/.github/workflows/docker-ci.yml @@ -206,7 +206,7 @@ jobs: id: setup-buildx - name: "Docker: Cache (1/2)" - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: dockerci-cache diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 5e83bba..43db928 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -60,7 +60,7 @@ jobs: distribution: ${{ inputs.java-distribution }} - name: Cache Local Maven Repo - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-${{ inputs.java-distribution }}-${{ inputs.java-version }}-maven-${{ hashFiles('pom.xml') }}