Skip to content

Commit

Permalink
chore(deps): update actions/cache action to v3.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
plural-copilot[bot] committed Sep 24, 2024
1 parent e490356 commit 423e6a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/goreleaser-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit 423e6a6

Please sign in to comment.