0
Fork 0
mirror of https://github.com/willnorris/imageproxy.git synced 2025-01-20 22:53:00 -05:00

actions: bump to actions/cache@v2

This commit is contained in:
Will Norris 2021-02-11 14:33:42 -08:00
parent bb65766878
commit 87f0c62a3e

View file

@ -32,10 +32,10 @@ jobs:
- uses: actions/checkout@v2
- name: Cache go modules
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }}
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: Run go test