From 252d2ec8409eda0fab5a2f7a6d1640c406f50f24 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 22:13:29 +0000 Subject: [PATCH] Bump actions/cache from 1 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 1 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/v1...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/c.yaml | 6 +++--- .github/workflows/haskell.yaml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/c.yaml b/.github/workflows/c.yaml index 4bf0e6c78e..56b9afdfc5 100644 --- a/.github/workflows/c.yaml +++ b/.github/workflows/c.yaml @@ -146,7 +146,7 @@ jobs: - uses: bazelbuild/setup-bazelisk@v2 - name: Mount bazel cache - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: "~/.cache/bazel" key: bazel @@ -167,7 +167,7 @@ jobs: - uses: bazelbuild/setup-bazelisk@v2 - name: Mount bazel cache - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: "~/.cache/bazel" key: bazel @@ -188,7 +188,7 @@ jobs: - uses: bazelbuild/setup-bazelisk@v2 - name: Mount bazel cache - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: "~/.cache/bazel" key: bazel diff --git a/.github/workflows/haskell.yaml b/.github/workflows/haskell.yaml index db6cebacbb..3157830315 100644 --- a/.github/workflows/haskell.yaml +++ b/.github/workflows/haskell.yaml @@ -18,14 +18,14 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Cache ~/.stack with: path: ~/.stack key: ${{ runner.os }}-stack-global-${{ hashFiles('stack.yaml') }}-${{ hashFiles('package.yaml') }} restore-keys: | ${{ runner.os }}-stack-global- - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Cache .stack-work with: path: .stack-work