Skip to content

Commit 42a3c7d

Browse files
chore(deps): bump actions/cache (#321)
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](actions/cache@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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Samuel Burnham <45365069+samuelburnham@users.noreply.github.com>
1 parent 105a3c2 commit 42a3c7d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/compile.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- run: |
2727
mkdir -p ~/.local/bin
2828
echo | lake run install
29-
- uses: actions/cache/save@v4
29+
- uses: actions/cache/save@v5
3030
with:
3131
path: ~/.local/bin/ix
3232
key: ix-${{ github.sha }}
@@ -46,7 +46,7 @@ jobs:
4646
steps:
4747
- uses: actions/checkout@v6
4848
# Restore cached `ix` binary
49-
- uses: actions/cache/restore@v4
49+
- uses: actions/cache/restore@v5
5050
with:
5151
path: ~/.local/bin/ix
5252
key: ix-${{ github.sha }}
@@ -61,7 +61,7 @@ jobs:
6161
use-github-cache: false
6262
# FLT and FC take a few minutes to rebuild, so we cache the build artifacts
6363
- if: matrix.cache_pkg
64-
uses: actions/cache@v4
64+
uses: actions/cache@v5
6565
with:
6666
path: ${{ env.COMPILE_DIR }}/.lake/packages/${{ matrix.cache_pkg }}/.lake/build
6767
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)) }}

0 commit comments

Comments
 (0)