Unverified Commit ceaa44b8 authored by Josh Black's avatar Josh Black Committed by GitHub
Browse files

bump go to 1.16.7 (#12408)

parent ce442ad1
Showing with 1254 additions and 1251 deletions
+1254 -1251
This diff is collapsed.
This diff is collapsed.
...@@ -14,7 +14,7 @@ parameters: ...@@ -14,7 +14,7 @@ parameters:
default: false default: false
go_image: go_image:
type: string type: string
default: "docker.mirror.hashicorp.services/circleci/golang:1.16.5-buster" default: "docker.mirror.hashicorp.services/circleci/golang:1.16.7-buster"
use_docker: use_docker:
type: boolean type: boolean
default: false default: false
......
...@@ -3,7 +3,7 @@ go-machine: ...@@ -3,7 +3,7 @@ go-machine:
shell: /usr/bin/env bash -euo pipefail -c shell: /usr/bin/env bash -euo pipefail -c
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.16.6 # Pin Go to patch version (ex: 1.2.3) GO_VERSION: 1.16.7 # Pin Go to patch version (ex: 1.2.3)
GOTESTSUM_VERSION: 0.5.2 # Pin gotestsum to patch version (ex: 1.2.3) GOTESTSUM_VERSION: 0.5.2 # Pin gotestsum to patch version (ex: 1.2.3)
GO_TAGS: "" GO_TAGS: ""
working_directory: /go/src/github.com/hashicorp/vault working_directory: /go/src/github.com/hashicorp/vault
...@@ -25,7 +25,7 @@ alpine: ...@@ -25,7 +25,7 @@ alpine:
docker-env-go-test-remote-docker: docker-env-go-test-remote-docker:
resource_class: medium resource_class: medium
docker: docker:
- image: "docker.mirror.hashicorp.services/circleci/golang:1.16.6-buster" - image: "docker.mirror.hashicorp.services/circleci/golang:1.16.7-buster"
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_TAGS: "" GO_TAGS: ""
...@@ -33,7 +33,7 @@ docker-env-go-test-remote-docker: ...@@ -33,7 +33,7 @@ docker-env-go-test-remote-docker:
docker-env-go-test: docker-env-go-test:
resource_class: large resource_class: large
docker: docker:
- image: "docker.mirror.hashicorp.services/circleci/golang:1.16.6-buster" - image: "docker.mirror.hashicorp.services/circleci/golang:1.16.7-buster"
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_TAGS: "" GO_TAGS: ""
...@@ -41,7 +41,7 @@ docker-env-go-test: ...@@ -41,7 +41,7 @@ docker-env-go-test:
docker-env-go-test-race: docker-env-go-test-race:
resource_class: xlarge resource_class: xlarge
docker: docker:
- image: "docker.mirror.hashicorp.services/circleci/golang:1.16.6-buster" - image: "docker.mirror.hashicorp.services/circleci/golang:1.16.7-buster"
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_TAGS: "" GO_TAGS: ""
......
...@@ -15,7 +15,7 @@ EXTERNAL_TOOLS=\ ...@@ -15,7 +15,7 @@ EXTERNAL_TOOLS=\
GOFMT_FILES?=$$(find . -name '*.go' | grep -v pb.go | grep -v vendor) GOFMT_FILES?=$$(find . -name '*.go' | grep -v pb.go | grep -v vendor)
GO_VERSION_MIN=1.16.6 GO_VERSION_MIN=1.16.7
GO_CMD?=go GO_CMD?=go
CGO_ENABLED?=0 CGO_ENABLED?=0
ifneq ($(FDB_ENABLED), ) ifneq ($(FDB_ENABLED), )
......
...@@ -70,7 +70,7 @@ Developing Vault ...@@ -70,7 +70,7 @@ Developing Vault
If you wish to work on Vault itself or any of its built-in systems, you'll If you wish to work on Vault itself or any of its built-in systems, you'll
first need [Go](https://www.golang.org) installed on your machine. Go version first need [Go](https://www.golang.org) installed on your machine. Go version
1.16.5+ is *required*. 1.16.7+ is *required*.
For local dev first make sure Go is properly installed, including setting up a For local dev first make sure Go is properly installed, including setting up a
[GOPATH](https://golang.org/doc/code.html#GOPATH). Ensure that `$GOPATH/bin` is in [GOPATH](https://golang.org/doc/code.html#GOPATH). Ensure that `$GOPATH/bin` is in
......
```release-note:change
go: Update go version to 1.16.7
```
This diff is collapsed.
This diff is collapsed.
...@@ -38,7 +38,7 @@ inputs: ...@@ -38,7 +38,7 @@ inputs:
PRODUCT_VERSION: 0.0.0-snapshot PRODUCT_VERSION: 0.0.0-snapshot
# GO_VERSION is the version of the Go toolchain to use to compile this package. # GO_VERSION is the version of the Go toolchain to use to compile this package.
GO_VERSION: 1.16.6 GO_VERSION: 1.16.7
# YARN_VERSION is the version of Yarn to install for the UI layer. # YARN_VERSION is the version of Yarn to install for the UI layer.
YARN_VERSION: 1.19.1-1 YARN_VERSION: 1.19.1-1
......
# Multi-stage builder to avoid polluting users environment with wrong # Multi-stage builder to avoid polluting users environment with wrong
# architecture binaries. Since this binary is used in an alpine container, # architecture binaries. Since this binary is used in an alpine container,
# we're explicitly compiling for 'linux/amd64' # we're explicitly compiling for 'linux/amd64'
ARG VERSION=1.16.6 ARG VERSION=1.16.7
FROM golang:${VERSION} AS builder FROM golang:${VERSION} AS builder
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# we're explicitly compiling for 'linux/amd64' # we're explicitly compiling for 'linux/amd64'
FROM debian:buster AS builder FROM debian:buster AS builder
ARG VERSION=1.16.6 ARG VERSION=1.16.7
ARG CGO_ENABLED=0 ARG CGO_ENABLED=0
ARG BUILD_TAGS ARG BUILD_TAGS
ENV JOBS=2 ENV JOBS=2
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment