From 38db95860181af92aa979a90cfd6ff522e49af83 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 16:42:30 +0000 Subject: [PATCH] Bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 4 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/v4...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/github.yml | 12 ++++++------ .github/workflows/release.yml | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/github.yml b/.github/workflows/github.yml index f37aa3bd4..882d927e3 100644 --- a/.github/workflows/github.yml +++ b/.github/workflows/github.yml @@ -24,19 +24,19 @@ jobs: distribution: 'adopt' - name: Gradle cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.gradle key: gradle - name: Maven cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.m2 key: m2 - name: Loading ivy cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.ivy2/cache key: ${{ runner.os }}-ivy-${{ hashFiles('**/*.sbt') }} @@ -94,19 +94,19 @@ jobs: distribution: 'adopt' - name: Gradle cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.gradle key: gradle - name: Maven cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.m2 key: m2 - name: Loading ivy cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.ivy2/cache key: ${{ runner.os }}-ivy-${{ hashFiles('**/*.sbt') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 64124e7f1..3c5117cb9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,19 +43,19 @@ jobs: distribution: 'adopt' - name: Gradle cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.gradle key: gradle - name: Maven cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.m2 key: m2 - name: Loading ivy cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.ivy2/cache key: ${{ runner.os }}-ivy-${{ hashFiles('**/*.sbt') }}