From 423e6a6ae887f459f03f8979cb86a00b47c8ee57 Mon Sep 17 00:00:00 2001 From: "plural-copilot[bot]" Date: Tue, 24 Sep 2024 14:03:26 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v3.2.6 --- .github/workflows/ci.yaml | 2 +- .github/workflows/goreleaser-cd.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 38e5bd8b..a9943270 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -295,7 +295,7 @@ jobs: shell: bash run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV - name: Setup Cache - uses: actions/cache@v3.2.3 + uses: actions/cache@v3.2.6 with: path: dist/${{ matrix.goos }} key: ${{ matrix.goos }}-${{ env.sha_short }} diff --git a/.github/workflows/goreleaser-cd.yml b/.github/workflows/goreleaser-cd.yml index 737b02a4..4162a638 100644 --- a/.github/workflows/goreleaser-cd.yml +++ b/.github/workflows/goreleaser-cd.yml @@ -32,7 +32,7 @@ jobs: with: node-version: 16.18.1 - name: Setup Cache - uses: actions/cache@v3.2.3 + uses: actions/cache@v3.2.6 with: path: dist/${{ matrix.goos }} key: ${{ matrix.goos }}-${{ github.ref_name }} @@ -89,17 +89,17 @@ jobs: run: | echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV - name: Restore Linux Cache - uses: actions/cache@v3.2.3 + uses: actions/cache@v3.2.6 with: path: dist/linux key: linux-${{ github.ref_name }} - name: Restore Darwin Cache - uses: actions/cache@v3.2.3 + uses: actions/cache@v3.2.6 with: path: dist/darwin key: darwin-${{ github.ref_name }} - name: Restore Windows Cache - uses: actions/cache@v3.2.3 + uses: actions/cache@v3.2.6 with: path: dist/windows key: windows-${{ github.ref_name }}