From ede954aa0dd0a573711dc69892fc4fb2d4360322 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 16:01:48 +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/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..34d664f9c 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@v5 with: path: ~/.gradle key: gradle - name: Maven cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2 key: m2 - name: Loading ivy cache - uses: actions/cache@v4 + uses: actions/cache@v5 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@v5 with: path: ~/.gradle key: gradle - name: Maven cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2 key: m2 - name: Loading ivy cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.ivy2/cache key: ${{ runner.os }}-ivy-${{ hashFiles('**/*.sbt') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 64124e7f1..65209b63b 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@v5 with: path: ~/.gradle key: gradle - name: Maven cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2 key: m2 - name: Loading ivy cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.ivy2/cache key: ${{ runner.os }}-ivy-${{ hashFiles('**/*.sbt') }}