Skip to content

Commit

Permalink
Update actions/cache action to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Apr 25, 2022
1 parent c450bf1 commit 52e64d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum') }}
Expand All @@ -57,7 +57,7 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum') }}
Expand Down

0 comments on commit 52e64d1

Please sign in to comment.