From ba56224a2aa9e4eaa9a2ce6f3e77abad137ddecc Mon Sep 17 00:00:00 2001 From: Chris Capurso <1036769+ccapurso@users.noreply.github.com> Date: Mon, 18 Jul 2022 16:28:47 -0400 Subject: [PATCH] Update go to version 1.17.12 (#16336) * update to go 1.17.12 * update changelog entry * update readme --- .circleci/config.yml | 22 +++++++++++----------- .circleci/config/commands/go_test.yml | 2 +- .circleci/config/executors/@executors.yml | 8 ++++---- .github/workflows/build.yml | 6 +++--- Makefile | 2 +- README.md | 2 +- changelog/_go-ver-1120.txt | 3 +++ changelog/go-ver-1120.txt | 3 --- scripts/docker/Dockerfile | 2 +- scripts/docker/Dockerfile.ui | 2 +- 10 files changed, 26 insertions(+), 26 deletions(-) create mode 100644 changelog/_go-ver-1120.txt delete mode 100644 changelog/go-ver-1120.txt diff --git a/.circleci/config.yml b/.circleci/config.yml index fe96d133e3..23ed61af77 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -120,12 +120,12 @@ jobs: environment: - CIRCLECI_CLI_VERSION: 0.1.5546 - GO_TAGS: '' - - GO_VERSION: 1.17.11 + - GO_VERSION: 1.17.12 - GOFUMPT_VERSION: 0.2.1 - GOTESTSUM_VERSION: 0.5.2 test-go-remote-docker: docker: - - image: docker.mirror.hashicorp.services/cimg/go:1.17.11 + - image: docker.mirror.hashicorp.services/cimg/go:1.17.12 resource_class: medium working_directory: /home/circleci/go/src/github.com/hashicorp/vault parallelism: 8 @@ -258,7 +258,7 @@ jobs: -e NO_PROXY \ -e VAULT_TEST_LOG_DIR=/tmp/testlogs \ --network vaulttest --name \ - testcontainer docker.mirror.hashicorp.services/cimg/go:1.17.11 \ + testcontainer docker.mirror.hashicorp.services/cimg/go:1.17.12 \ tail -f /dev/null # Run tests @@ -359,12 +359,12 @@ jobs: environment: - CIRCLECI_CLI_VERSION: 0.1.5546 - GO_TAGS: '' - - GO_VERSION: 1.17.11 + - GO_VERSION: 1.17.12 - GOFUMPT_VERSION: 0.2.1 - GOTESTSUM_VERSION: 0.5.2 test-go-race: docker: - - image: docker.mirror.hashicorp.services/cimg/go:1.17.11 + - image: docker.mirror.hashicorp.services/cimg/go:1.17.12 resource_class: xlarge working_directory: /home/circleci/go/src/github.com/hashicorp/vault parallelism: 8 @@ -493,7 +493,7 @@ jobs: -e NO_PROXY \ -e VAULT_TEST_LOG_DIR=/tmp/testlogs \ --network vaulttest --name \ - testcontainer docker.mirror.hashicorp.services/cimg/go:1.17.11 \ + testcontainer docker.mirror.hashicorp.services/cimg/go:1.17.12 \ tail -f /dev/null # Run tests @@ -551,7 +551,7 @@ jobs: - GO_TAGS: '' test-go: docker: - - image: docker.mirror.hashicorp.services/cimg/go:1.17.11 + - image: docker.mirror.hashicorp.services/cimg/go:1.17.12 resource_class: large working_directory: /home/circleci/go/src/github.com/hashicorp/vault parallelism: 8 @@ -680,7 +680,7 @@ jobs: -e NO_PROXY \ -e VAULT_TEST_LOG_DIR=/tmp/testlogs \ --network vaulttest --name \ - testcontainer docker.mirror.hashicorp.services/cimg/go:1.17.11 \ + testcontainer docker.mirror.hashicorp.services/cimg/go:1.17.12 \ tail -f /dev/null # Run tests @@ -849,12 +849,12 @@ jobs: environment: - CIRCLECI_CLI_VERSION: 0.1.5546 - GO_TAGS: '' - - GO_VERSION: 1.17.11 + - GO_VERSION: 1.17.12 - GOFUMPT_VERSION: 0.2.1 - GOTESTSUM_VERSION: 0.5.2 test-go-race-remote-docker: docker: - - image: docker.mirror.hashicorp.services/cimg/go:1.17.11 + - image: docker.mirror.hashicorp.services/cimg/go:1.17.12 resource_class: medium working_directory: /home/circleci/go/src/github.com/hashicorp/vault parallelism: 8 @@ -987,7 +987,7 @@ jobs: -e NO_PROXY \ -e VAULT_TEST_LOG_DIR=/tmp/testlogs \ --network vaulttest --name \ - testcontainer docker.mirror.hashicorp.services/cimg/go:1.17.11 \ + testcontainer docker.mirror.hashicorp.services/cimg/go:1.17.12 \ tail -f /dev/null # Run tests diff --git a/.circleci/config/commands/go_test.yml b/.circleci/config/commands/go_test.yml index 75b4efc0eb..36aaad4474 100644 --- a/.circleci/config/commands/go_test.yml +++ b/.circleci/config/commands/go_test.yml @@ -14,7 +14,7 @@ parameters: default: false go_image: type: string - default: "docker.mirror.hashicorp.services/cimg/go:1.17.11" + default: "docker.mirror.hashicorp.services/cimg/go:1.17.12" use_docker: type: boolean default: false diff --git a/.circleci/config/executors/@executors.yml b/.circleci/config/executors/@executors.yml index e08b87ad73..ab08c2f2a5 100644 --- a/.circleci/config/executors/@executors.yml +++ b/.circleci/config/executors/@executors.yml @@ -4,7 +4,7 @@ go-machine: shell: /usr/bin/env bash -euo pipefail -c environment: CIRCLECI_CLI_VERSION: 0.1.5546 # Pin CircleCI CLI to patch version (ex: 1.2.3) - GO_VERSION: 1.17.11 # Pin Go to patch version (ex: 1.2.3) + GO_VERSION: 1.17.12 # Pin Go to patch version (ex: 1.2.3) GOTESTSUM_VERSION: 0.5.2 # Pin gotestsum to patch version (ex: 1.2.3) GOFUMPT_VERSION: 0.2.1 # Pin gofumpt to patch version (ex: 1.2.3) GO_TAGS: "" @@ -30,7 +30,7 @@ alpine: docker-env-go-test-remote-docker: resource_class: medium docker: - - image: "docker.mirror.hashicorp.services/cimg/go:1.17.11" + - image: "docker.mirror.hashicorp.services/cimg/go:1.17.12" environment: CIRCLECI_CLI_VERSION: 0.1.5546 # Pin CircleCI CLI to patch version (ex: 1.2.3) GO_TAGS: "" @@ -38,7 +38,7 @@ docker-env-go-test-remote-docker: docker-env-go-test: resource_class: large docker: - - image: "docker.mirror.hashicorp.services/cimg/go:1.17.11" + - image: "docker.mirror.hashicorp.services/cimg/go:1.17.12" environment: CIRCLECI_CLI_VERSION: 0.1.5546 # Pin CircleCI CLI to patch version (ex: 1.2.3) GO_TAGS: "" @@ -46,7 +46,7 @@ docker-env-go-test: docker-env-go-test-race: resource_class: xlarge docker: - - image: "docker.mirror.hashicorp.services/cimg/go:1.17.11" + - image: "docker.mirror.hashicorp.services/cimg/go:1.17.12" environment: CIRCLECI_CLI_VERSION: 0.1.5546 # Pin CircleCI CLI to patch version (ex: 1.2.3) GO_TAGS: "" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7879964724..a4c4afd974 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,7 +66,7 @@ jobs: matrix: goos: [ freebsd, windows, netbsd, openbsd, solaris ] goarch: [ "386", "amd64", "arm" ] - go: [ "1.17.11" ] + go: [ "1.17.12" ] exclude: - goos: solaris goarch: 386 @@ -118,7 +118,7 @@ jobs: matrix: goos: [linux] goarch: ["arm", "arm64", "386", "amd64"] - go: ["1.17.11"] + go: ["1.17.12"] fail-fast: true name: Go ${{ matrix.go }} ${{ matrix.goos }} ${{ matrix.goarch }} build @@ -195,7 +195,7 @@ jobs: matrix: goos: [ darwin ] goarch: [ "amd64", "arm64" ] - go: [ "1.17.11" ] + go: [ "1.17.12" ] fail-fast: true name: Go ${{ matrix.go }} ${{ matrix.goos }} ${{ matrix.goarch }} build steps: diff --git a/Makefile b/Makefile index dc62482022..09edc1a211 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ EXTERNAL_TOOLS=\ GOFMT_FILES?=$$(find . -name '*.go' | grep -v pb.go | grep -v vendor) -GO_VERSION_MIN=1.17.11 +GO_VERSION_MIN=1.17.12 GO_CMD?=go CGO_ENABLED?=0 ifneq ($(FDB_ENABLED), ) diff --git a/README.md b/README.md index aed1239a05..2e7ff382ac 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ Developing Vault 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 -1.17.11+ is *required*. +1.17.12+ is *required*. 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 diff --git a/changelog/_go-ver-1120.txt b/changelog/_go-ver-1120.txt new file mode 100644 index 0000000000..c9e1468557 --- /dev/null +++ b/changelog/_go-ver-1120.txt @@ -0,0 +1,3 @@ +```release-note:change +core: Bump Go version to 1.17.12. +``` diff --git a/changelog/go-ver-1120.txt b/changelog/go-ver-1120.txt deleted file mode 100644 index 5a5112885f..0000000000 --- a/changelog/go-ver-1120.txt +++ /dev/null @@ -1,3 +0,0 @@ -```release-note:change -core: Bump Go version to 1.17.11. -``` diff --git a/scripts/docker/Dockerfile b/scripts/docker/Dockerfile index a1b85c5bfa..e408df0850 100644 --- a/scripts/docker/Dockerfile +++ b/scripts/docker/Dockerfile @@ -1,7 +1,7 @@ # Multi-stage builder to avoid polluting users environment with wrong # architecture binaries. Since this binary is used in an alpine container, # we're explicitly compiling for 'linux/amd64' -ARG VERSION=1.17.11 +ARG VERSION=1.17.12 FROM golang:${VERSION} AS builder diff --git a/scripts/docker/Dockerfile.ui b/scripts/docker/Dockerfile.ui index 5bf773fa73..4163ffbbed 100644 --- a/scripts/docker/Dockerfile.ui +++ b/scripts/docker/Dockerfile.ui @@ -3,7 +3,7 @@ # we're explicitly compiling for 'linux/amd64' FROM debian:buster AS builder -ARG VERSION=1.17.11 +ARG VERSION=1.17.12 ARG CGO_ENABLED=0 ARG BUILD_TAGS ENV JOBS=2