Bump go cache (#1919)

This commit is contained in:
WithoutPants 2021-10-28 17:00:24 +11:00 committed by GitHub
parent 96fce90cc3
commit bf59028bcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -47,10 +47,11 @@ jobs:
- name: Cache go build
uses: actions/cache@v2
env:
cache-name: cache-go-cache
# increment the number suffix to bump the cache
cache-name: cache-go-cache-1
with:
path: .go-cache
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/go.sum') }}
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('go.mod', '**/go.sum') }}
- name: Start build container
env: