Skip to content

Commit 6d1e5f8

Browse files
authored
Merge pull request #266 from kmala/feat
update the go version to 1.24.2
2 parents 7941b8d + 26f7762 commit 6d1e5f8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.23.4
1+
1.24.2

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG golang_image=public.ecr.aws/eks-distro-build-tooling/golang:1.23
1+
ARG golang_image=public.ecr.aws/eks-distro-build-tooling/golang:1.24
22

33
FROM --platform=$BUILDPLATFORM $golang_image AS builder
44
WORKDIR $GOPATH/src/github.com/aws/amazon-eks-pod-identity-webhook
@@ -7,7 +7,7 @@ RUN go version
77
ARG TARGETOS TARGETARCH
88
RUN GOPROXY=direct CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -o /webhook -v -a -ldflags="-buildid='' -w -s" .
99

10-
FROM --platform=$TARGETPLATFORM public.ecr.aws/eks-distro/kubernetes/go-runner:v0.16.4-eks-1-32-latest
10+
FROM --platform=$TARGETPLATFORM public.ecr.aws/eks-distro/kubernetes/go-runner:v0.18.0-eks-1-32-latest
1111
COPY --from=builder /webhook /webhook
1212
ENTRYPOINT ["/go-runner"]
1313
CMD ["/webhook"]

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/aws/amazon-eks-pod-identity-webhook
22

3-
go 1.24.0
3+
go 1.24.2
44

55
require (
66
github.com/aws/aws-sdk-go-v2 v1.36.3

0 commit comments

Comments
 (0)