Skip to content

Commit 8627f51

Browse files
Merge pull request #4958 from justinsb/codebot-update-golang-version-go1.24.6
codebot: update go to 1.24.6
2 parents 958a22b + a546e19 commit 8627f51

26 files changed

Lines changed: 28 additions & 28 deletions

File tree

build/builder/Dockerfile

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

1515
# This Dockerfile builds an image containing builds of all the binaries built
1616
# from source (manager, webhook, etc.)
17-
FROM golang:1.24.5 AS builder
17+
FROM golang:1.24.6 AS builder
1818

1919
# Copy in the Go source code
2020
WORKDIR /go/src/github.com/GoogleCloudPlatform/k8s-config-connector

build/tooling/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.24.5 AS builder
15+
FROM golang:1.24.6 AS builder
1616

1717
RUN GO111MODULE=on go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.16.5
1818

dev/tools/controllerbuilder/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/GoogleCloudPlatform/k8s-config-connector/dev/tools/controllerb
22

33
go 1.24.0
44

5-
toolchain go1.24.5
5+
toolchain go1.24.6
66

77
require (
88
github.com/GoogleCloudPlatform/kubectl-ai/gollm v0.0.0-20250423144723-a651944aad2d

experiments/composite/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/GoogleCloudPlatform/k8s-config-connector/experiments/composite
22

33
go 1.24
44

5-
toolchain go1.24.5
5+
toolchain go1.24.6
66

77
require (
88
k8s.io/apimachinery v0.32.1

experiments/compositions/composition/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
# Build the manager binary
16-
FROM golang:1.24.5 as builder
16+
FROM golang:1.24.6 as builder
1717
ARG TARGETOS
1818
ARG TARGETARCH
1919

experiments/compositions/composition/Dockerfile.getter.expander

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# ----------------- Build Container ---------------------------
1818
# Build the go app.
1919
# Explicitly set to latest vs golang:1.22
20-
FROM golang:1.24.5 AS build-stage
20+
FROM golang:1.24.6 AS build-stage
2121

2222
# Set destination for COPY
2323
WORKDIR /go/src/app

experiments/compositions/composition/Dockerfile.inline

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

33
# ----------------- Build Container ---------------------------
44
# Build the go app.
5-
FROM golang:1.24.5 AS build-stage
5+
FROM golang:1.24.6 AS build-stage
66

77
# Set destination for COPY
88
WORKDIR /go/src/app

experiments/compositions/composition/Dockerfile.jinja2.expander

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# ----------------- Build Container ---------------------------
1818
# Build the go app.
1919
# Explicitly set to latest vs golang:1.22
20-
FROM golang:1.24.5 AS build-stage
20+
FROM golang:1.24.6 AS build-stage
2121

2222
# Set destination for COPY
2323
WORKDIR /go/src/app

experiments/compositions/composition/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/GoogleCloudPlatform/k8s-config-connector/experiments/compositi
22

33
go 1.24.0
44

5-
toolchain go1.24.5
5+
toolchain go1.24.6
66

77
require (
88
github.com/Masterminds/semver/v3 v3.2.1

experiments/compositions/expanders/cel-expander/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# ----------------- Build Container ---------------------------
1919
# Build the go app.
2020
# Explicitly set to latest vs golang:1.22
21-
FROM golang:1.24.5 AS build-stage
21+
FROM golang:1.24.6 AS build-stage
2222

2323
# Set destination for COPY
2424
WORKDIR /go/src/app
@@ -32,7 +32,7 @@ RUN go mod download
3232
RUN CGO_ENABLED=0 GOOS=linux go build -v -o expander main.go
3333

3434

35-
FROM golang:1.24.5 as bins
35+
FROM golang:1.24.6 as bins
3636

3737
WORKDIR /workspace
3838

0 commit comments

Comments
 (0)