Update Go version

This commit is contained in:
Jeff Mitchell 2019-10-17 15:31:12 -04:00
parent b48ce3d95f
commit 5f51b0c707
2 changed files with 9 additions and 9 deletions

14
.circleci/config.yml generated
View File

@ -54,7 +54,7 @@ jobs:
- ui/node_modules
go-mod-download:
docker:
- image: golang:1.12.7-stretch
- image: golang:1.12.11-stretch
shell: /usr/bin/env bash -euo pipefail -c
working_directory: /src
steps:
@ -76,7 +76,7 @@ jobs:
- /go/pkg/mod
build-go-dev:
docker:
- image: golang:1.12.7-stretch
- image: golang:1.12.11-stretch
shell: /usr/bin/env bash -euo pipefail -c
working_directory: /src
steps:
@ -223,7 +223,7 @@ jobs:
environment:
- CIRCLECI_CLI_VERSION: 0.1.5546
- GO_TAGS: null
- GO_VERSION: 1.12.7
- GO_VERSION: 1.12.11
- GOTESTSUM_VERSION: 0.3.3
test-go-race:
machine: true
@ -293,7 +293,7 @@ jobs:
environment:
- CIRCLECI_CLI_VERSION: 0.1.5546
- GO_TAGS: null
- GO_VERSION: 1.12.7
- GO_VERSION: 1.12.11
- GOTESTSUM_VERSION: 0.3.3
workflows:
ci:
@ -407,14 +407,14 @@ workflows:
# executors:
# go:
# docker:
# - image: golang:1.12.7-stretch
# - image: golang:1.12.11-stretch
# shell: /usr/bin/env bash -euo pipefail -c
# working_directory: /src
# go-machine:
# environment:
# CIRCLECI_CLI_VERSION: 0.1.5546
# GO_TAGS: null
# GO_VERSION: 1.12.7
# GO_VERSION: 1.12.11
# GOTESTSUM_VERSION: 0.3.3
# machine: true
# shell: /usr/bin/env bash -euo pipefail -c
@ -586,7 +586,7 @@ workflows:
# go-sum: go-sum-v1-{{ checksum \"go.sum\" }}
# yarn-lock: yarn-lock-v1-{{ checksum \"ui/yarn.lock\" }}
# images:
# go: golang:1.12.7-stretch
# go: golang:1.12.11-stretch
# node: node:10-stretch
# version: 2.1
# workflows:

View File

@ -3,7 +3,7 @@ version: 2.1
references:
images:
go: &GOLANG_IMAGE golang:1.12.7-stretch # Pin Go to patch version (ex: 1.2.3)
go: &GOLANG_IMAGE golang:1.12.11-stretch # Pin Go to patch version (ex: 1.2.3)
node: &NODE_IMAGE node:10-stretch # Pin Node.js to major version (ex: 10)
cache:
@ -43,7 +43,7 @@ executors:
machine: true
environment:
CIRCLECI_CLI_VERSION: 0.1.5546 # Pin CircleCI CLI to patch version (ex: 1.2.3)
GO_VERSION: 1.12.7 # Pin Go to patch version (ex: 1.2.3)
GO_VERSION: 1.12.11 # Pin Go to patch version (ex: 1.2.3)
GOTESTSUM_VERSION: 0.3.3 # Pin gotestsum to patch version (ex: 1.2.3)
GO_TAGS:
shell: /usr/bin/env bash -euo pipefail -c