Skip to content

Commit 9498c2c

Browse files
committed
chore: update to go 1.24.6
Signed-off-by: Anish Ramasekar <[email protected]>
1 parent 0d96529 commit 9498c2c

File tree

9 files changed

+13
-16
lines changed

9 files changed

+13
-16
lines changed

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
run:
22
timeout: 5m
3-
go: "1.23"
3+
go: "1.24"
44

55
linters-settings:
66
gocritic:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ IMAGE_VERSION ?= v1.5.3
3434

3535
# Use a custom version for E2E tests if we are testing in CI
3636
ifdef CI
37-
override IMAGE_VERSION := v1.5.0-e2e-$(BUILD_COMMIT)
37+
override IMAGE_VERSION := v1.6.0-e2e-$(BUILD_COMMIT)
3838
endif
3939

4040
IMAGE_TAG=$(REGISTRY)/$(IMAGE_NAME):$(IMAGE_VERSION)
@@ -103,7 +103,7 @@ KIND_VERSION ?= 0.27.0
103103
KUBERNETES_VERSION ?= 1.30.2
104104
KUBECTL_VERSION ?= 1.30.2
105105
BATS_VERSION ?= 1.4.1
106-
TRIVY_VERSION ?= 0.57.1
106+
TRIVY_VERSION ?= 0.65.0
107107
PROTOC_VERSION ?= 3.20.1
108108
SHELLCHECK_VER ?= v0.8.0
109109
YQ_VERSION ?= v4.11.2

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.5
1616

17-
FROM golang:1.23.10@sha256:dd5cc4b4f85d13329cb5b17cbf35c509e1c82a43bf6e5961516fda444013121a AS builder
17+
FROM golang:1.24.6@sha256:e155b5162f701b7ab2e6e7ea51cec1e5f6deffb9ab1b295cf7a697e81069b050 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.29.11
16+
ARG KUBE_VERSION=v1.33.4
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.23.10@sha256:dd5cc4b4f85d13329cb5b17cbf35c509e1c82a43bf6e5961516fda444013121a AS builder
20+
FROM --platform=$BUILDPLATFORM golang:1.24.6@sha256:e155b5162f701b7ab2e6e7ea51cec1e5f6deffb9ab1b295cf7a697e81069b050 AS builder
2121
WORKDIR /go/src/sigs.k8s.io/secrets-store-csi-driver
2222
ADD . .
2323
ARG TARGETARCH

go.mod

Lines changed: 4 additions & 7 deletions
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.23.10
3+
go 1.24.6
44

55
require (
66
github.com/container-storage-interface/spec v1.6.0
@@ -25,21 +25,17 @@ require (
2525
sigs.k8s.io/controller-runtime v0.14.6
2626
)
2727

28-
require (
29-
github.com/blang/semver/v4 v4.0.0 // indirect
30-
github.com/go-logr/stdr v1.2.2 // indirect
31-
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
32-
)
33-
3428
require (
3529
github.com/beorn7/perks v1.0.1 // indirect
30+
github.com/blang/semver/v4 v4.0.0 // indirect
3631
github.com/cespare/xxhash/v2 v2.2.0 // indirect
3732
github.com/davecgh/go-spew v1.1.1 // indirect
3833
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
3934
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
4035
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
4136
github.com/fsnotify/fsnotify v1.6.0 // indirect
4237
github.com/go-logr/logr v1.2.4 // indirect
38+
github.com/go-logr/stdr v1.2.2 // indirect
4339
github.com/go-logr/zapr v1.2.3 // indirect
4440
github.com/go-openapi/jsonpointer v0.19.6 // indirect
4541
github.com/go-openapi/jsonreference v0.20.1 // indirect
@@ -90,6 +86,7 @@ require (
9086
gopkg.in/yaml.v3 v3.0.1 // indirect
9187
k8s.io/apiextensions-apiserver v0.26.4 // indirect
9288
k8s.io/component-base v0.26.4 // indirect
89+
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
9390
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
9491
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
9592
sigs.k8s.io/yaml v1.3.0 // indirect

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.2
3+
go 1.24.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.23.10@sha256:dd5cc4b4f85d13329cb5b17cbf35c509e1c82a43bf6e5961516fda444013121a as builder
15+
FROM golang:1.24.6@sha256:e155b5162f701b7ab2e6e7ea51cec1e5f6deffb9ab1b295cf7a697e81069b050 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.23.10
3+
go 1.24.6
44

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

0 commit comments

Comments
 (0)