Skip to content

Commit 1d9d349

Browse files
committed
update to go1.23.6
- https://github.com/golang/go/issues?q=milestone%3AGo1.23.6+label%3ACherryPickApproved - full diff: golang/go@go1.23.5...go1.23.6 This minor release include 1 security fix following the security policy: - crypto/elliptic: timing sidechannel for P-256 on ppc64le Due to the usage of a variable time instruction in the assembly implementation of an internal function, a small number of bits of secret scalars are leaked on the ppc64le architecture. Due to the way this function is used, we do not believe this leakage is enough to allow recovery of the private key when P-256 is used in any well known protocols. This is CVE-2025-22866 and Go issue https://go.dev/issue/71383. View the release notes for more information: https://go.dev/doc/devel/release#go1.23.6 Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
1 parent dff0dc8 commit 1d9d349

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.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.5"
66+
go-version: "1.23.6"
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.5"
69+
go-version: "1.23.6"
7070
-
7171
name: Test
7272
run: |

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ linters:
4343
run:
4444
# prevent golangci-lint from deducting the go version to lint for through go.mod,
4545
# which causes it to fallback to go1.17 semantics.
46-
go: "1.23.5"
46+
go: "1.23.6"
4747
timeout: 5m
4848

4949
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.5
7+
ARG GO_VERSION=1.23.6
88
ARG XX_VERSION=1.6.1
99
ARG GOVERSIONINFO_VERSION=v1.4.1
1010
ARG GOTESTSUM_VERSION=v1.10.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.5"
2+
default = "1.23.6"
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.5
3+
ARG GO_VERSION=1.23.6
44
ARG ALPINE_VERSION=3.21
55

66
ARG BUILDX_VERSION=0.17.1

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.5
3+
ARG GO_VERSION=1.23.6
44
ARG ALPINE_VERSION=3.21
55
ARG GOLANGCI_LINT_VERSION=v1.62.2
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.5
3+
ARG GO_VERSION=1.23.6
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.5
3+
ARG GO_VERSION=1.23.6
44

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

0 commit comments

Comments
 (0)