Skip to content

Commit 58fba25

Browse files
authored
Merge pull request #5986 from thaJeztah/bump_golang_1.23.8
update to go1.23.8 (fix CVE-2025-22871)
2 parents 6523832 + 64413c2 commit 58fba25

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.7"
66+
go-version: "1.23.8"
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.7"
69+
go-version: "1.23.8"
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.7"
47+
go: "1.23.8"
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.7
7+
ARG GO_VERSION=1.23.8
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.7"
2+
default = "1.23.8"
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.7
3+
ARG GO_VERSION=1.23.8
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.7
3+
ARG GO_VERSION=1.23.8
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.7
3+
ARG GO_VERSION=1.23.8
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.7
3+
ARG GO_VERSION=1.23.8
44

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

0 commit comments

Comments
 (0)