Skip to content

Commit

Permalink
chore(deps): update actions/cache action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored May 30, 2024
1 parent 2e0b022 commit 67280b1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ jobs:
run: echo "cachedir=$(make go.cachedir)" >> $GITHUB_ENV

- name: Cache the Go Build Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.cachedir }}
key: ${{ runner.os }}-build-lint-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-build-lint-

- name: Cache Go Dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .work/pkg
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
Expand Down Expand Up @@ -98,14 +98,14 @@ jobs:
run: echo "cachedir=$(make go.cachedir)" >> $GITHUB_ENV

- name: Cache the Go Build Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.cachedir }}
key: ${{ runner.os }}-build-check-diff-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-build-check-diff-

- name: Cache Go Dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .work/pkg
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
Expand Down Expand Up @@ -148,14 +148,14 @@ jobs:
run: echo "cachedir=$(make go.cachedir)" >> $GITHUB_ENV

- name: Cache the Go Build Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.cachedir }}
key: ${{ runner.os }}-build-unit-tests-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-build-unit-tests-

- name: Cache Go Dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .work/pkg
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
Expand Down Expand Up @@ -216,14 +216,14 @@ jobs:
run: echo "cachedir=$(make go.cachedir)" >> $GITHUB_ENV

- name: Cache the Go Build Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.cachedir }}
key: ${{ runner.os }}-build-publish-artifacts-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-build-publish-artifacts-

- name: Cache Go Dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .work/pkg
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
Expand Down

0 comments on commit 67280b1

Please sign in to comment.