From 767be5b6a82d3448fbd579a9ae1513d2e4c295cb Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Fri, 21 Jun 2019 14:28:29 +0300 Subject: [PATCH] CircleCI - reset go mod cache --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c720241b..f0ce7222 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,7 +9,7 @@ jobs: - checkout - restore_cache: keys: - - go-mod-{{ checksum "go.sum" }} + - go-mod-v1-{{ checksum "go.sum" }} - run: | make test-fmt make test-codegen @@ -21,7 +21,7 @@ jobs: -a -installsuffix cgo -o bin/flagger ./cmd/flagger/* ./bin/flagger -version - save_cache: - key: go-mod-{{ checksum "go.sum" }} + key: go-mod-v1-{{ checksum "go.sum" }} paths: - "/go/pkg/mod/" - persist_to_workspace: