Skip to content

Commit b8dd14b

Browse files
authored
Merge pull request #1980 from aramase/aramase/c/go1.24.12
chore: update to go 1.25.6 and kubectl v1.34.3
2 parents 4273be2 + c5eb389 commit b8dd14b

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docker/Dockerfile

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

1515
ARG BASEIMAGE=registry.k8s.io/build-image/debian-base:bookworm-v1.0.6
1616

17-
FROM golang:1.24.11@sha256:e3fb71a958a346439626e5796d79749c7ed22e61f09f078f434486015285f432 AS builder
17+
FROM golang:1.25.6@sha256:06d1251c59a75761ce4ebc8b299030576233d7437c886a68b43464bad62d4bb1 AS builder
1818
WORKDIR /go/src/sigs.k8s.io/secrets-store-csi-driver
1919
ADD . .
2020
ARG TARGETARCH

docker/crd.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
FROM alpine as builder
16-
ARG KUBE_VERSION=v1.34.1
16+
ARG KUBE_VERSION=v1.34.3
1717
ARG TARGETARCH
1818

1919
RUN apk add --no-cache curl && \

docker/windows.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ARG BASEIMAGE_CORE=gcr.io/k8s-staging-e2e-test-images/windows-servercore-cache:1
1717

1818
FROM --platform=linux/amd64 ${BASEIMAGE_CORE} AS core
1919

20-
FROM --platform=$BUILDPLATFORM golang:1.24.11@sha256:e3fb71a958a346439626e5796d79749c7ed22e61f09f078f434486015285f432 AS builder
20+
FROM --platform=$BUILDPLATFORM golang:1.25.6@sha256:06d1251c59a75761ce4ebc8b299030576233d7437c886a68b43464bad62d4bb1 AS builder
2121
WORKDIR /go/src/sigs.k8s.io/secrets-store-csi-driver
2222
ADD . .
2323
ARG TARGETARCH

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/secrets-store-csi-driver
22

3-
go 1.24.11
3+
go 1.25.6
44

55
require (
66
github.com/container-storage-interface/spec v1.6.0

hack/tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/secrets-store-csi-driver/hack/tools
22

3-
go 1.24.11
3+
go 1.25.6
44

55
require (
66
github.com/golangci/golangci-lint v1.64.8

test/e2eprovider/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.11@sha256:e3fb71a958a346439626e5796d79749c7ed22e61f09f078f434486015285f432 as builder
15+
FROM golang:1.25.6@sha256:06d1251c59a75761ce4ebc8b299030576233d7437c886a68b43464bad62d4bb1 as builder
1616
WORKDIR /go/src/sigs.k8s.io/secrets-store-csi-driver
1717
ADD . .
1818
RUN make build-e2e-provider

test/e2eprovider/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/secrets-store-csi-driver/test/e2eprovider
22

3-
go 1.24.11
3+
go 1.25.6
44

55
replace sigs.k8s.io/secrets-store-csi-driver => ../..
66

0 commit comments

Comments
 (0)