build: update golang to 1.17.9

This commit is contained in:
Seth Hoenig
2022-04-21 11:43:01 -05:00
parent 55ca76e205
commit 91d91e28e4
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.17.5"
local go_version="1.17.9"
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.17.5"
local go_version="1.17.9"
local download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz"
if go version 2>&1 | grep -q "${go_version}"; then