From 95ec1a7de0e1b8ec0d2addaeece1b1c321e5a36c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:17:20 +0000 Subject: [PATCH] deps(actions): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/dependency-check.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0e15f5..88260c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: distribution: temurin java-version: '17' - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.m2/repository key: maven-${{ runner.os }}-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index baad1b2..03d703a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -30,7 +30,7 @@ jobs: distribution: temurin java-version: '17' - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.m2/repository key: maven-codeql-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/dependency-check.yml b/.github/workflows/dependency-check.yml index a622f05..d164a09 100644 --- a/.github/workflows/dependency-check.yml +++ b/.github/workflows/dependency-check.yml @@ -28,7 +28,7 @@ jobs: java-version: '17' - name: Cache Maven repository - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.m2/repository key: m2-${{ hashFiles('**/pom.xml') }}