Skip to content

Commit

Permalink
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 6d1270d commit 663b8dd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/acceptance-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Cache Go module dependencies
id: cache-go-module-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: go-mod-cache-${{ runner.os }}-${{ env.GO_VERSION }}-${{ hashFiles('go.sum') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- name: Cache Go module dependencies
id: cache-go-module-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: go-mod-cache-${{ runner.os }}-${{ env.GO_VERSION }}-${{ hashFiles('go.sum') }}
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Cache build dependencies
id: cache-build-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: bin/
key: build-deps-v2-{{ hashFiles('common.mk') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/license.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Cache build dependencies
id: cache-build-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: bin/
key: build-deps-v2-{{ hashFiles('common.mk') }}
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Cache licenses
id: cache-licenses
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.licensei.cache
Expand Down

0 comments on commit 663b8dd

Please sign in to comment.