Skip to content

Commit df20921

Browse files
committed
update to go1.23.7
- https://github.com/golang/go/issues?q=milestone%3AGo1.23.7+label%3ACherryPickApproved - full diff: golang/go@go1.23.6...go1.23.7 These minor releases include 1 security fixes following the security policy: net/http, x/net/proxy, x/net/http/httpproxy: proxy bypass using IPv6 zone IDs Matching of hosts against proxy patterns could improperly treat an IPv6 zone ID as a hostname component. For example, when the NO_PROXY environment variable was set to "*.example.com", a request to "[::1%25.example.com]:80` would incorrectly match and not be proxied. Thanks to Juho Forsén of Mattermost for reporting this issue. This is CVE-2025-22870 and Go issue https://go.dev/issue/71984. View the release notes for more information: https://go.dev/doc/devel/release#go1.23.7 Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
1 parent ea1f10b commit df20921

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
name: Update Go
6464
uses: actions/setup-go@v5
6565
with:
66-
go-version: "1.23.6"
66+
go-version: "1.23.7"
6767
-
6868
name: Initialize CodeQL
6969
uses: github/codeql-action/init@v3

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
name: Set up Go
6767
uses: actions/setup-go@v5
6868
with:
69-
go-version: "1.23.6"
69+
go-version: "1.23.7"
7070
-
7171
name: Test
7272
run: |

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ run:
4444
# which causes it to fallback to go1.17 semantics.
4545
#
4646
# TODO(thaJeztah): update "usetesting" settings to enable go1.24 features once our minimum version is go1.24
47-
go: "1.23.6"
47+
go: "1.23.7"
4848
timeout: 5m
4949

5050
linters-settings:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG BASE_VARIANT=alpine
44
ARG ALPINE_VERSION=3.21
55
ARG BASE_DEBIAN_DISTRO=bookworm
66

7-
ARG GO_VERSION=1.23.6
7+
ARG GO_VERSION=1.23.7
88
ARG XX_VERSION=1.6.1
99
ARG GOVERSIONINFO_VERSION=v1.4.1
1010
ARG GOTESTSUM_VERSION=v1.12.0

docker-bake.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variable "GO_VERSION" {
2-
default = "1.23.6"
2+
default = "1.23.7"
33
}
44
variable "VERSION" {
55
default = ""

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
22

3-
ARG GO_VERSION=1.23.6
3+
ARG GO_VERSION=1.23.7
44
ARG ALPINE_VERSION=3.21
55

66
# BUILDX_VERSION sets the version of buildx to install in the dev container.

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
22

3-
ARG GO_VERSION=1.23.6
3+
ARG GO_VERSION=1.23.7
44
ARG ALPINE_VERSION=3.21
55
ARG GOLANGCI_LINT_VERSION=v1.64.5
66

dockerfiles/Dockerfile.vendor

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.23.6
3+
ARG GO_VERSION=1.23.7
44
ARG ALPINE_VERSION=3.21
55
ARG MODOUTDATED_VERSION=v0.8.0
66

e2e/testdata/Dockerfile.gencerts

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.23.6
3+
ARG GO_VERSION=1.23.7
44

55
FROM golang:${GO_VERSION}-alpine AS generated
66
ENV GOTOOLCHAIN=local

0 commit comments

Comments
 (0)