From d45ca67498e12abe7e1ffd2e5b1aaa9eb561e609 Mon Sep 17 00:00:00 2001 From: Adam Chalmers Date: Fri, 4 Dec 2020 16:37:32 -0600 Subject: [PATCH] TUN-3612: Upgrade to Go 1.15.6 --- Dockerfile | 2 +- cfsetup.yaml | 10 +++++----- dev.Dockerfile | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 650c8431..815f975e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # use a builder image for building cloudflare ARG TARGET_GOOS ARG TARGET_GOARCH -FROM golang:1.15.5 as builder +FROM golang:1.15.6 as builder ENV GO111MODULE=on \ CGO_ENABLED=0 \ TARGET_GOOS=${TARGET_GOOS} \ diff --git a/cfsetup.yaml b/cfsetup.yaml index f0848444..f000ade5 100644 --- a/cfsetup.yaml +++ b/cfsetup.yaml @@ -1,4 +1,4 @@ -pinned_go: &pinned_go go=1.15.5-1 +pinned_go: &pinned_go go=1.15.6-1 build_dir: &build_dir /cfsetup_build default-flavor: buster stretch: &stretch @@ -248,8 +248,8 @@ centos-7: - https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm pre-cache: - yum install -y fakeroot - - wget https://golang.org/dl/go1.15.5.linux-amd64.tar.gz -P /tmp/ - - tar -C /usr/local -xzf /tmp/go1.15.5.linux-amd64.tar.gz + - wget https://golang.org/dl/go1.15.6.linux-amd64.tar.gz -P /tmp/ + - tar -C /usr/local -xzf /tmp/go1.15.6.linux-amd64.tar.gz post-cache: - export PATH=$PATH:/usr/local/go/bin - export GOOS=linux @@ -260,8 +260,8 @@ centos-7: builddeps: *el7_builddeps pre-cache: - yum install -y fakeroot - - wget https://golang.org/dl/go1.15.5.linux-amd64.tar.gz -P /tmp/ - - tar -C /usr/local -xzf /tmp/go1.15.5.linux-amd64.tar.gz + - wget https://golang.org/dl/go1.15.6.linux-amd64.tar.gz -P /tmp/ + - tar -C /usr/local -xzf /tmp/go1.15.6.linux-amd64.tar.gz post-cache: - export PATH=$PATH:/usr/local/go/bin - export GOOS=linux diff --git a/dev.Dockerfile b/dev.Dockerfile index aa97ba72..181c605c 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.15.5 as builder +FROM golang:1.15.6 as builder ENV GO111MODULE=on \ CGO_ENABLED=0 WORKDIR /go/src/github.com/cloudflare/cloudflared/