E590 Update Go to 1.16.7 · docker/cli@2012fbf · GitHub
[go: up one dir, main page]

Skip to content

Commit 2012fbf

Browse files
committed
Update Go to 1.16.7
go1.16.7 (released 2021-08-05) includes a security fix to the net/http/httputil package, as well as bug fixes to the compiler, the linker, the runtime, the go command, and the net/http package. See the Go 1.16.7 milestone on the issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.16.7+label%3ACherryPickApproved Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 3112b38) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent 3967b7d commit 2012fbf

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1.3
22

33
ARG BASE_VARIANT=alpine
4-
ARG GO_VERSION=1.16.6
4+
ARG GO_VERSION=1.16.7
55

66
FROM --platform=$BUILDPLATFORM golang:${GO_VERSION}-${BASE_VARIANT} AS gostable
77
FROM --platform=$BUILDPLATFORM golang:1.17rc1-${BASE_VARIANT} AS golatest

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff FBC8 line change
@@ -4,7 +4,7 @@ clone_folder: c:\gopath\src\github.com\docker\cli
44

55
environment:
66
GOPATH: c:\gopath
7-
GOVERSION: 1.16.6
7+
GOVERSION: 1.16.7
88
DEPVERSION: v0.4.1
99

1010
install:

dockerfiles/Dockerfile.binary-native

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.16.6
1+
ARG GO_VERSION=1.16.7
22

33
FROM golang:${GO_VERSION}-alpine
44

dockerfiles/Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1.3
22

3-
ARG GO_VERSION=1.16.6
3+
ARG GO_VERSION=1.16.7
44

55
FROM golang:${GO_VERSION}-alpine AS golang
66
ENV CGO_ENABLED=0

dockerfiles/Dockerfile.e2e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.16.6
1+
ARG GO_VERSION=1.16.7
22

33
# Use Debian based image as docker-compose requires glibc.
44
FROM golang:${GO_VERSION}-buster

dockerfiles/Dockerfile.lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1.3
22

3-
ARG GO_VERSION=1.16.6
3+
ARG GO_VERSION=1.16.7
44
ARG GOLANGCI_LINTER_SHA="v1.21.0"
55

66
FROM golang:${GO_VERSION}-alpine AS build

0 commit comments

Comments
 (0)
0