Skip to content

Commit

Permalink
Update actions/cache to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanemerson committed Dec 6, 2023
1 parent 1566985 commit 9e0a0b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/upgrade_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,21 +63,21 @@ jobs:
# Cache go build cache, used to speedup go test
- name: Go Build Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

# Cache go mod cache, used to speedup builds
- name: Go Mod Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}

# Cache local bin dependencies
- name: Local Dependencies Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: bin
key: ${{ runner.os }}-bin-${{ hashFiles('Makefile') }}
Expand Down

0 comments on commit 9e0a0b3

Please sign in to comment.