Skip to content

Commit 9212c36

Browse files
authored
Merge pull request #839 from kmala/fix
update the go version to 1.24.2
2 parents da30f8d + e45a7d5 commit 9212c36

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
ARG image=public.ecr.aws/eks-distro-build-tooling/eks-distro-minimal-base-nonroot:2024-10-01-1727740884.2023
15-
ARG golang_image=public.ecr.aws/docker/library/golang:1.23.4
15+
ARG golang_image=public.ecr.aws/docker/library/golang:1.24.2
1616

1717
FROM --platform=$BUILDPLATFORM $golang_image AS builder
1818
WORKDIR /go/src/github.com/kubernetes-sigs/aws-iam-authenticator
@@ -23,7 +23,7 @@ ARG TARGETOS TARGETARCH
2323
RUN GOPROXY=direct GOOS=$TARGETOS GOARCH=$TARGETARCH make bin
2424
RUN chown 65532 _output/bin/aws-iam-authenticator
2525

26-
FROM --platform=$TARGETPLATFORM public.ecr.aws/eks-distro/kubernetes/go-runner:v0.16.4-eks-1-32-2 AS go-runner
26+
FROM --platform=$TARGETPLATFORM public.ecr.aws/eks-distro/kubernetes/go-runner:v0.18.0-eks-1-32-latest AS go-runner
2727

2828
FROM --platform=$TARGETPLATFORM $image
2929
COPY --from=go-runner /go-runner /usr/local/bin/go-runner

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/aws-iam-authenticator
22

3-
go 1.23.4
3+
go 1.24.2
44

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

tests/e2e/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/aws-iam-authenticator/tests/e2e
22

3-
go 1.23.4
3+
go 1.24.2
44

55
require (
66
github.com/onsi/ginkgo/v2 v2.22.2

tests/integration/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/aws-iam-authenticator/tests/integration
22

3-
go 1.23.4
3+
go 1.24.2
44

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

0 commit comments

Comments
 (0)