From d6b6a90d7ce93d27cf0ee68a6bf605c22db0a471 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 30 Nov 2024 17:13:16 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3eb496f..2073f9c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: id: cache_key run: echo "gradle_key=gradle-`cat versions/mainProject`" >> $GITHUB_OUTPUT - name: Cache Gradle stuff - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: ${{ steps.cache_key.outputs.gradle_key }}-${{ hashFiles('*.gradle.kts', 'gradle.properties', 'gradle/**') }} restore-keys: ${{ steps.cache_key.outputs.gradle_key }}- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 72364ef..1993f07 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,7 @@ jobs: id: cache_key run: echo "gradle_key=gradle-`cat versions/mainProject`" >> $GITHUB_OUTPUT - name: Cache Gradle stuff - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: ${{ steps.cache_key.outputs.gradle_key }}-${{ hashFiles('*.gradle.kts', 'gradle.properties', 'gradle/**') }} restore-keys: ${{ steps.cache_key.outputs.gradle_key }}-