From 96ed9567709bf7643154e250cc553a773da73369 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 14 Mar 2026 20:32:40 +0000 Subject: [PATCH] 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/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f7e4045eb1..411b91fef70 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: - name: Build run: mvn -U -B -e clean install -Prat -DskipTests "-Dinvoker.skip=true" - name: Save Maven Local Repository - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ~/.m2/repository key: maven-local-repo-${{ github.run_id }} @@ -72,7 +72,7 @@ jobs: distribution: 'temurin' cache: 'maven' - name: Restore Maven Local Repository - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ~/.m2/repository key: maven-local-repo-${{ github.run_id }}