Skip to content

Commit 1ead2dd

Browse files
committed
update go to go1.20.6
go1.20.6 (released 2023-07-11) includes a security fix to the net/http package, as well as bug fixes to the compiler, cgo, the cover tool, the go command, the runtime, and the crypto/ecdsa, go/build, go/printer, net/mail, and text/template packages. See the Go 1.20.6 milestone on our issue tracker for details. https://github.com/golang/go/issues?q=milestone%3AGo1.20.6+label%3ACherryPickApproved Full diff: golang/go@go1.20.5...go1.20.6 These minor releases include 1 security fixes following the security policy: net/http: insufficient sanitization of Host header The HTTP/1 client did not fully validate the contents of the Host header. A maliciously crafted Host header could inject additional headers or entire requests. The HTTP/1 client now refuses to send requests containing an invalid Request.Host or Request.URL.Host value. Thanks to Bartek Nowotarski for reporting this issue. Includes security fixes for [CVE-2023-29406 ][1] and Go issue https://go.dev/issue/60374 [1]: GHSA-f8f7-69v5-w4vx Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent dab9ffb commit 1ead2dd

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/.windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
default: false
1616

1717
env:
18-
GO_VERSION: "1.20.5"
18+
GO_VERSION: "1.20.6"
1919
GOTESTLIST_VERSION: v0.3.1
2020
TESTSTAT_VERSION: v0.1.3
2121
WINDOWS_BASE_IMAGE: mcr.microsoft.com/windows/servercore

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
pull_request:
1616

1717
env:
18-
GO_VERSION: "1.20.5"
18+
GO_VERSION: "1.20.6"
1919
GOTESTLIST_VERSION: v0.3.1
2020
TESTSTAT_VERSION: v0.1.3
2121
ITG_CLI_MATRIX_SIZE: 6

Dockerfile

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

3-
ARG GO_VERSION=1.20.5
3+
ARG GO_VERSION=1.20.6
44
ARG BASE_DEBIAN_DISTRO="bullseye"
55
ARG GOLANG_IMAGE="golang:${GO_VERSION}-${BASE_DEBIAN_DISTRO}"
66
ARG XX_VERSION=1.2.1

Dockerfile.simple

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# This represents the bare minimum required to build and test Docker.
77

8-
ARG GO_VERSION=1.20.5
8+
ARG GO_VERSION=1.20.6
99

1010
ARG BASE_DEBIAN_DISTRO="bullseye"
1111
ARG GOLANG_IMAGE="golang:${GO_VERSION}-${BASE_DEBIAN_DISTRO}"

Dockerfile.windows

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ FROM microsoft/windowsservercore
165165
# Use PowerShell as the default shell
166166
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
167167

168-
ARG GO_VERSION=1.20.5
168+
ARG GO_VERSION=1.20.6
169169
ARG GOTESTSUM_VERSION=v1.8.2
170170
ARG GOWINRES_VERSION=v0.3.0
171171
ARG CONTAINERD_VERSION=v1.7.1

hack/dockerfiles/generate-files.Dockerfile

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

3-
ARG GO_VERSION=1.20.5
3+
ARG GO_VERSION=1.20.6
44
ARG BASE_DEBIAN_DISTRO="bullseye"
55
ARG PROTOC_VERSION=3.11.4
66

0 commit comments

Comments
 (0)