diff options
| author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2024-01-22 02:34:07 +0000 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2024-01-21 19:21:03 -0800 |
| commit | 734f86061893e81a14ef94432555f4edd24b2b8f (patch) | |
| tree | 4f13393d1d7873669202093294f5d33276bdbff2 /.github/workflows/ci.yml | |
| parent | 243bbf699c8f5f47539100307ee450ad65a3256e (diff) | |
build(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] <support@github.com>
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 673f3db8f..d2e35641d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,7 +83,7 @@ jobs: - name: Cache cabal global package db id: cabal-global - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.local/state/cabal @@ -91,7 +91,7 @@ jobs: - name: Cache cabal work id: cabal-local - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | dist-newstyle @@ -120,7 +120,7 @@ jobs: # declare/restore cached things - name: Cache stack global package db id: stack-global - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.stack @@ -128,7 +128,7 @@ jobs: - name: Cache stack work id: stack-local - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | .stack-work @@ -150,14 +150,14 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - name: Cache cabal global package db id: cabal-global - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.local/state/cabal key: ${{ runner.os }}-nix-cabal-global-${{ secrets.CACHE_VERSION }} - name: Cache cabal work id: cabal-local - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | dist-newstyle @@ -180,7 +180,7 @@ jobs: - name: Cache cabal global package db id: cabal-global - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | C:\cabal\store @@ -188,7 +188,7 @@ jobs: - name: Cache cabal work id: cabal-local - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | dist-newstyle @@ -222,7 +222,7 @@ jobs: # - name: Cache cabal global package db # id: cabal-global -# uses: actions/cache@v3 +# uses: actions/cache@v4 # with: # path: | # ~/.cabal @@ -230,7 +230,7 @@ jobs: # - name: Cache cabal work # id: cabal-local -# uses: actions/cache@v3 +# uses: actions/cache@v4 # with: # path: | # dist-newstyle |
