From 97da596275ec442087ad250d0f105d64ca02b6e1 Mon Sep 17 00:00:00 2001 From: Sebastian Spaink <3441183+sspaink@users.noreply.github.com> Date: Fri, 12 Mar 2021 11:42:55 -0600 Subject: [PATCH] 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> --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c4d0f8f4797f8..6a9162aa104cd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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'