Skip to content

Commit

Permalink
chore(deps): bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
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](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 22, 2024
1 parent 918c410 commit 9f3eee0
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: dist/linux
key: linux-${{ env.sha_short }}-canary
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: dist/darwin
key: darwin-${{ env.sha_short }}-canary
Expand Down Expand Up @@ -123,11 +123,11 @@ jobs:
- shell: bash
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: dist/linux
key: linux-${{ env.sha_short }}-canary
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: dist/darwin
key: darwin-${{ env.sha_short }}-canary
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/command_doc_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
node-version: "16"
- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
node-version: "16"
- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
node-version: "16"
- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: dist/linux
key: linux-${{ env.sha_short }}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: dist/darwin
key: darwin-${{ env.sha_short }}
Expand Down Expand Up @@ -123,11 +123,11 @@ jobs:
- shell: bash
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: dist/linux
key: linux-${{ env.sha_short }}
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: dist/darwin
key: darwin-${{ env.sha_short }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/version_comparison.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
cd ./test-cli
go build -o ../bearer-comparison/test-bearer ./cmd/bearer/main.go
- name: Cache CLIs and rules
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: bearer-comparison
key: ${{ steps.cache_key.outputs.value }}
Expand All @@ -80,7 +80,7 @@ jobs:
fail-fast: false
steps:
- name: Restore CLIs and rules
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: bearer-comparison
key: ${{ needs.setup.outputs.cache_key }}
Expand Down

0 comments on commit 9f3eee0

Please sign in to comment.