Update mac cache version number in circle-ci to avoid conflicts (#8982)

* Have mac use 1.16.1

* minor version not necessary

Co-authored-by: Bas <3441183+BattleBas@users.noreply.github.com>
This commit is contained in:
Sebastian Spaink 2021-03-12 11:42:55 -06:00 committed by GitHub
parent 5085f595ac
commit 97da596275
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -93,14 +93,14 @@ jobs:
steps:
- checkout
- restore_cache:
key: mac-go-mod-v2-{{ checksum "go.sum" }}
key: mac-go-mod-v3-{{ checksum "go.sum" }}
- run: 'brew update'
- run: 'brew install go@1.16'
- run: 'make deps'
- run: 'make tidy'
- save_cache:
name: 'go module cache'
key: mac-go-mod-v2-{{ checksum "go.sum" }}
key: mac-go-mod-v3-{{ checksum "go.sum" }}
paths:
- '~/go/pkg/mod'
- '/usr/local/Cellar/go'