Skip to content

Commit fc18b4c

Browse files
author
Daniel Chalef
committed
upgrade to actions/cache@v3
1 parent 92795fb commit fc18b4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030

3131
# Cache go build cache, used to speedup go test
3232
- name: Go Build Cache
33-
uses: actions/cache@v2
33+
uses: actions/cache@v3
3434
with:
3535
path: ${{ steps.go-cache-paths.outputs.go-build }}
3636
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
3737

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

0 commit comments

Comments
 (0)