From d211310a6dd0675622af571c4c866ca0c2e5355f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 14 Jun 2026 05:19:47 +0000 Subject: [PATCH] ci: 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-for-example.yaml | 2 +- .github/workflows/ci-from-template.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-for-example.yaml b/.github/workflows/ci-for-example.yaml index 22a66b8..2705527 100644 --- a/.github/workflows/ci-for-example.yaml +++ b/.github/workflows/ci-for-example.yaml @@ -22,7 +22,7 @@ jobs: distribution: temurin java-version: 25 - name: Cache Maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/ci-from-template.yaml b/.github/workflows/ci-from-template.yaml index e1441f4..45d289e 100644 --- a/.github/workflows/ci-from-template.yaml +++ b/.github/workflows/ci-from-template.yaml @@ -52,7 +52,7 @@ jobs: distribution: temurin java-version: 25 - name: Cache Maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}