From 8f484e51f9bd62157d79b825b8a76d098d10bb9c Mon Sep 17 00:00:00 2001 From: Evan Gilman Date: Wed, 23 Jan 2019 14:30:24 -0800 Subject: [PATCH] Upgrade to go 1.11.5 In response to CVE-2019-6486 https://github.com/golang/go/issues/29903 Signed-off-by: Evan Gilman --- .go-version | 2 +- build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.go-version b/.go-version index 3d0e62313c..e6dbb7c238 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.11.4 +1.11.5 diff --git a/build.sh b/build.sh index 4398c89909..4f62f90c25 100755 --- a/build.sh +++ b/build.sh @@ -29,7 +29,7 @@ declare -r BUILD_CACHE=${BUILD_CACHE:-$PWD/.cache} # versioned binaries that we need for builds export GO111MODULE=on -declare -r GO_VERSION=${GO_VERSION:-1.11.4} +declare -r GO_VERSION=${GO_VERSION:-1.11.5} declare -r GO_URL="https://storage.googleapis.com/golang" declare -r GO_TGZ="go${GO_VERSION}.${OS1}-${ARCH2}.tar.gz" declare -r PROTOBUF_VERSION=${PROTOBUF_VERSION:-3.3.0}