From 216dbacd3c12fdb6a7fb6a0bc69a6d2675d94f65 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 21:28:17 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 98175f6cfa..06a34c65bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,21 +73,21 @@ jobs: - name: Cache the Go Build Cache - uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3 + uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: path: ${{ steps.go_cache.outputs.cache }} key: ${{ runner.os }}-build-lint-${{ hashFiles('**/go.sum') }} restore-keys: ${{ runner.os }}-build-lint- - name: Cache Go Dependencies - uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3 + uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 with: path: ${{ steps.go_cache.outputs.mod_cache }} key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }} restore-keys: ${{ runner.os }}-pkg- - name: Cache Linter Analysis - uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3 + uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 id: cache-analysis with: path: ${{ steps.go_cache.outputs.analysis_cache }}