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

View File

@ -3,7 +3,7 @@ version: 2.1
references: references:
images: 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) node: &NODE_IMAGE node:10-stretch # Pin Node.js to major version (ex: 10)
cache: cache:
@ -43,7 +43,7 @@ executors:
machine: true machine: true
environment: environment:
CIRCLECI_CLI_VERSION: 0.1.5546 # Pin CircleCI CLI to patch version (ex: 1.2.3) 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) GOTESTSUM_VERSION: 0.3.3 # Pin gotestsum to patch version (ex: 1.2.3)
GO_TAGS: GO_TAGS:
shell: /usr/bin/env bash -euo pipefail -c shell: /usr/bin/env bash -euo pipefail -c