From 168a898c32dd1230277b56a0a06b3a6953231e8b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 11:48:21 +0100 Subject: [PATCH] chore(deps): update actions/cache action to v3.3.3 (#235) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/build_rocks.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_rocks.yaml b/.github/workflows/build_rocks.yaml index 9481b37dc..65e08494b 100644 --- a/.github/workflows/build_rocks.yaml +++ b/.github/workflows/build_rocks.yaml @@ -124,7 +124,7 @@ jobs: echo 'EOF' >> $GITHUB_ENV - name: Restore rock cache if: inputs.cache-action == 'restore' - uses: actions/cache/restore@v3.3.2 + uses: actions/cache/restore@v3.3.3 id: rock-cache with: path: ~/.rock-cache @@ -132,7 +132,7 @@ jobs: restore-keys: ${{ env.ROCK_CACHE_ALT_KEYS }} - name: Restore rockcraft container cache if: steps.rock-cache.outputs.cache-hit != 'true' && inputs.cache-action == 'restore' - uses: actions/cache/restore@v3.3.2 + uses: actions/cache/restore@v3.3.3 id: rockcraft-cache with: path: ~/.rockcraft-cache/ @@ -184,7 +184,7 @@ jobs: done - name: Save rockcraft container cache if: inputs.cache-action == 'save' - uses: actions/cache/save@v3.3.2 + uses: actions/cache/save@v3.3.3 with: path: ~/.rockcraft-cache/ key: ${{ env.ROCKCRAFT_CACHE_KEY }} @@ -207,7 +207,7 @@ jobs: done - name: Save rock cache if: inputs.cache-action == 'save' - uses: actions/cache/save@v3.3.2 + uses: actions/cache/save@v3.3.3 with: path: ~/.rock-cache key: ${{ env.ROCK_CACHE_KEY }}