From 0d6e103ff66cde23592c8fb78e4276e667d56c1d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 06:03:30 +0000 Subject: [PATCH] chore(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] --- .github/workflows/build.yml | 2 +- .github/workflows/ci.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b1ee560c9f..f9c1c7560f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: # Binary Cache Logic ############################################################################################# - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: binaries key: drivers-${{ env.CRYSTAL_VERSION }}-${{ github.run_id }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 369d02bd1b..fdad01846a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: output: ' ' - uses: actions/checkout@v4 - name: Cache shards - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: lib key: ${{ hashFiles('shard.lock') }} @@ -93,7 +93,7 @@ jobs: - uses: actions/checkout@v4 - name: Cache shards - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: lib key: ${{ hashFiles('shard.lock') }} @@ -101,7 +101,7 @@ jobs: # Binary Cache Logic ############################################################################################# - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: binaries key: drivers-${{ env.CRYSTAL_VERSION }}-${{ github.run_id }}