Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 3e10549

Browse files
committed
Bump Golang 1.10.6 (CVE-2018-16875)
go1.10.6 (released 2018/12/14) - crypto/x509: CPU denial of service in chain validation golang/go#29233 - cmd/go: directory traversal in "go get" via curly braces in import paths golang/go#29231 - cmd/go: remote command execution during "go get -u" golang/go#29230 See the Go 1.10.6 milestone on the issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.10.6 Signed-off-by: Sebastiaan van Stijn <[email protected]> Upstream-commit: 8afe9f422dc0183ce48e1db09189ccbde634080a Component: engine
1 parent b412443 commit 3e10549

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

components/engine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
# the case. Therefore, you don't have to disable it anymore.
2525
#
2626

27-
FROM golang:1.10.5 AS base
27+
FROM golang:1.10.6 AS base
2828
# FIXME(vdemeester) this is kept for other script depending on it to not fail right away
2929
# Remove this once the other scripts uses something else to detect the version
30-
ENV GO_VERSION 1.10.5
30+
ENV GO_VERSION 1.10.6
3131
# allow replacing httpredir or deb mirror
3232
ARG APT_MIRROR=deb.debian.org
3333
RUN sed -ri "s/(httpredir|deb).debian.org/$APT_MIRROR/g" /etc/apt/sources.list

components/engine/Dockerfile.e2e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Step 1: Build tests
2-
FROM golang:1.10.5-alpine3.7 as builder
2+
FROM golang:1.10.6-alpine3.7 as builder
33

44
RUN apk add --update \
55
bash \

components/engine/Dockerfile.simple

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
4242
# will need updating, to avoid errors. Ping #docker-maintainers on IRC
4343
# with a heads-up.
4444
# IMPORTANT: When updating this please note that stdlib archive/tar pkg is vendored
45-
ENV GO_VERSION 1.10.5
45+
ENV GO_VERSION 1.10.6
4646
RUN curl -fsSL "https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz" \
4747
| tar -xzC /usr/local
4848
ENV PATH /go/bin:/usr/local/go/bin:$PATH

components/engine/Dockerfile.windows

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPref
161161
# Environment variable notes:
162162
# - GO_VERSION must be consistent with 'Dockerfile' used by Linux.
163163
# - FROM_DOCKERFILE is used for detection of building within a container.
164-
ENV GO_VERSION=1.10.5 `
164+
ENV GO_VERSION=1.10.6 `
165165
GIT_VERSION=2.11.1 `
166166
GOPATH=C:\go `
167167
FROM_DOCKERFILE=1

0 commit comments

Comments
 (0)