From 708a913e50d722fa07e2f23ed385d5f6941aefa2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 18:11:16 +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/hello-world-gradle-workflow.yml | 2 +- .github/workflows/hello-world-maven-workflow.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/hello-world-gradle-workflow.yml b/.github/workflows/hello-world-gradle-workflow.yml index 62b4dd0..8d7f92b 100644 --- a/.github/workflows/hello-world-gradle-workflow.yml +++ b/.github/workflows/hello-world-gradle-workflow.yml @@ -42,7 +42,7 @@ jobs: cache: "gradle" - name: Cache the Gradle packages to speed up build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches diff --git a/.github/workflows/hello-world-maven-workflow.yml b/.github/workflows/hello-world-maven-workflow.yml index 712f0f2..fefa86f 100644 --- a/.github/workflows/hello-world-maven-workflow.yml +++ b/.github/workflows/hello-world-maven-workflow.yml @@ -42,7 +42,7 @@ jobs: cache: "maven" - name: Cache the Maven packages to speed up build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}