summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-03-05 21:51:40 +1100
committerJesse Duffield <jessedduffield@gmail.com>2019-03-05 21:56:23 +1100
commit63e2ccfccf32bd7fff2e721940f8173c6194cce5 (patch)
treea537bb611f91bfcf9acf30560869523a631e467f
parent6fd4d49db7ac3191456cbf2595e0bd7f85ea9484 (diff)
bump go version in CIv0.7.2
-rw-r--r--.circleci/config.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 14c848257..4e14c1ff5 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- - image: circleci/golang:1.11
+ - image: circleci/golang:1.12
working_directory: /go/src/github.com/jesseduffield/lazygit
steps:
- checkout
@@ -28,7 +28,7 @@ jobs:
fi
- restore_cache:
keys:
- - pkg-cache-{{ checksum "Gopkg.lock" }}-v3
+ - pkg-cache-{{ checksum "Gopkg.lock" }}-v4
- run:
name: Run tests
command: |
@@ -43,7 +43,7 @@ jobs:
command: |
bash <(curl -s https://codecov.io/bash)
- save_cache:
- key: pkg-cache-{{ checksum "Gopkg.lock" }}-v3
+ key: pkg-cache-{{ checksum "Gopkg.lock" }}-v4
paths:
- ~/.cache/go-build