From b2d777e1f3e6515da30968fe3c05b61c51d85618 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 19:42:57 +0000 Subject: [PATCH] build(deps): bump the production-dependencies group with 1 update Bumps the production-dependencies group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/llvm.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b82f07f..235d8bf6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,7 +123,7 @@ jobs: - name: Restore LLVM if: matrix.llvm == 'source' - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: llvm-install key: ${{ needs.llvm.outputs.cache-key }} diff --git a/.github/workflows/llvm.yml b/.github/workflows/llvm.yml index 0fd2819a..daebc6e8 100644 --- a/.github/workflows/llvm.yml +++ b/.github/workflows/llvm.yml @@ -24,7 +24,7 @@ jobs: - name: Cache id: cache-llvm - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: llvm-install key: ${{ steps.cache-key.outputs.cache-key }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 180be024..1cb4c1c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: needs: llvm steps: - name: Restore LLVM - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: llvm-install key: ${{ needs.llvm.outputs.cache-key }}