From 580617d09444ce7960bec8b284ef1a0744564d84 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 16:11:48 +0000 Subject: [PATCH] chore(deps): bump actions/cache Bumps the actions-dependencies group with 1 update in the / directory: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/compile.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index d1c94f48..20abae9c 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -26,7 +26,7 @@ jobs: - run: | mkdir -p ~/.local/bin echo | lake run install - - uses: actions/cache/save@v4 + - uses: actions/cache/save@v5 with: path: ~/.local/bin/ix key: ix-${{ github.sha }} @@ -46,7 +46,7 @@ jobs: steps: - uses: actions/checkout@v6 # Restore cached `ix` binary - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: ~/.local/bin/ix key: ix-${{ github.sha }} @@ -61,7 +61,7 @@ jobs: use-github-cache: false # FLT and FC take a few minutes to rebuild, so we cache the build artifacts - if: matrix.cache_pkg - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.COMPILE_DIR }}/.lake/packages/${{ matrix.cache_pkg }}/.lake/build key: ${{ matrix.cache_pkg }}-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles(format('{0}/lean-toolchain', env.COMPILE_DIR)) }}-${{ hashFiles(format('{0}/lake-manifest.json', env.COMPILE_DIR)) }}