From 49dbd6f9c148fca6f8195e8038c67a42f36d171c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 10:16:09 +0000 Subject: [PATCH] fix(deps): 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8933677..16c598d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -70,7 +70,7 @@ jobs: - name: "Cache: Restore" id: cache-restore if: ${{ !env.ACT }} # https://github.com/nektos/act#skipping-steps - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: | ~/.m2/bin @@ -140,7 +140,7 @@ jobs: gh actions-cache delete ${{ steps.cache-restore.outputs.cache-primary-key }} --confirm || true - name: "Cache: Update" - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 if: ${{ always() && !cancelled() && !env.ACT }} # save cache even fails with: path: | @@ -197,7 +197,7 @@ jobs: steps: - name: "Cache: GraalVM binaries" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ matrix.graal_install_root }}