Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
chore(deps): bump actions/cache from 3 to 4 (#1100)
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]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 18, 2024
1 parent cb588ee commit 10d7418
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-component.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Cache Docker layers
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
go-version-file: 'api/go.mod'

- name: Setup Go caching
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
go-version-file: 'go.mod'

- name: Setup Go caching
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-end-to-end-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
go-version-file: 'e2e/go.mod'

- name: Setup Go caching
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable-verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
go-version-file: 'go.mod'

- name: Setup Go caching
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
~/go/pkg/mod
Expand All @@ -32,7 +32,7 @@ jobs:
run: make license-header

- name: License cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .licensei.cache
key: licensei-${{ github.ref_name }}-${{ hashFiles('**/go.sum') }}
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
go-version-file: 'go.mod'

- name: Setup Go caching
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand All @@ -116,7 +116,7 @@ jobs:
${{ runner.os }}-go-${{ github.event.repository.default_branch }}-
- name: Cache golangci-lint cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/.golangci.cache
key: golangci-${{ github.ref_name }}-${{ hashFiles('**/go.sum') }}
Expand Down

0 comments on commit 10d7418

Please sign in to comment.