From 5ade5f54c562cbba1338f4bb8e6593d6d6f6f5a4 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Thu, 13 Jun 2019 09:49:21 -0400 Subject: [PATCH] Update golang to 1.11.11 It's the latest 1.11 point release as of now --- README.md | 2 +- scripts/release/mac-remote-build | 2 +- scripts/vagrant-linux-priv-go.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 41138d10966..7982913e459 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ Who Uses Nomad Contributing to Nomad -------------------- -If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.11.6+ is *required*). +If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.11.11+ is *required*). **Developing with Vagrant** There is an included Vagrantfile that can help bootstrap the process. The diff --git a/scripts/release/mac-remote-build b/scripts/release/mac-remote-build index 207f44535f2..41c77815765 100755 --- a/scripts/release/mac-remote-build +++ b/scripts/release/mac-remote-build @@ -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.11.6" + local go_version="1.11.11" local download= download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz" diff --git a/scripts/vagrant-linux-priv-go.sh b/scripts/vagrant-linux-priv-go.sh index 4d0742fcfba..d2898223937 100755 --- a/scripts/vagrant-linux-priv-go.sh +++ b/scripts/vagrant-linux-priv-go.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash function install_go() { - local go_version=1.11.6 + local go_version=1.11.11 local download= download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz"