update golang to 1.16.3 (#10484)

This commit is contained in:
Mahmood Ali
2021-04-30 13:52:05 -04:00
committed by GitHub
parent 3dfb6641ff
commit 1638410170
5 changed files with 8 additions and 8 deletions

View File

@@ -56,7 +56,7 @@ REPO_PATH="${TMP_WORKSPACE}/gopath/src/github.com/hashicorp/nomad"
mkdir -p "${TMP_WORKSPACE}/tmp"
install_go() {
local go_version="1.16"
local go_version="1.16.3"
local download=
download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz"

View File

@@ -3,7 +3,7 @@
set -o errexit
function install_go() {
local go_version="1.16"
local go_version="1.16.3"
local download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz"
if go version 2>&1 | grep -q "${go_version}"; then