From 11401b74fd095c5ed5dafcf2daa856bb48b7fcff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 01:07:53 +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/build.yml | 2 +- .github/workflows/owasp_zap.yml | 2 +- .github/workflows/sonar.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c0b76f2d..16f2361e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: java-version: ${{ matrix.java }} distribution: 'temurin' - name: Cache SonarCloud packages - uses: actions/cache@v4.2.3 + uses: actions/cache@v5 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar-${{ matrix.java }} diff --git a/.github/workflows/owasp_zap.yml b/.github/workflows/owasp_zap.yml index f53b7c39..42cb0ff4 100644 --- a/.github/workflows/owasp_zap.yml +++ b/.github/workflows/owasp_zap.yml @@ -19,7 +19,7 @@ jobs: java-version: 21 distribution: 'temurin' - name: Cache Gradle packages - uses: actions/cache@v4.2.3 + uses: actions/cache@v5 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 3463e6b8..1a830333 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -23,13 +23,13 @@ jobs: ref: ${{ github.event.workflow_run.head_branch }} fetch-depth: 0 - name: Cache SonarCloud packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar-${{ github.event.workflow_run.outputs.jdk }} restore-keys: ${{ runner.os }}-sonar-${{ github.event.workflow_run.outputs.jdk }} - name: Cache Gradle packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}