Skip to content

Commit a0489cc

Browse files
authored
Bump Go to 1.26.1 (#746)
*Issue #, if available:* *Description of changes:* Go 1.26.1 is now available in https://gallery.ecr.aws/eks-distro-build-tooling/golang (which our `Dockerfile` and `Dockerfile.local` uses). Note: `go fix ./...` was run with no changes to the code. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. Signed-off-by: Jensen Tong <jetong@amazon.com>
1 parent 3347e9f commit a0489cc

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ RUN MP_ARCH=`echo ${TARGETARCH} | sed s/amd64/x86_64/` && \
4343
patchelf --set-rpath '$ORIGIN' /mountpoint-s3/bin/mount-s3
4444

4545
# Build driver. Use BUILDPLATFORM not TARGETPLATFORM for cross compilation
46-
FROM --platform=$BUILDPLATFORM public.ecr.aws/eks-distro-build-tooling/golang:1.26.0 as builder
46+
FROM --platform=$BUILDPLATFORM public.ecr.aws/eks-distro-build-tooling/golang:1.26.1 as builder
4747
ARG TARGETARCH
4848

4949
WORKDIR /go/src/github.com/awslabs/mountpoint-s3-csi-driver

Dockerfile.local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN cd mountpoint-s3 && \
4646
#
4747

4848
# Use BUILDPLATFORM not TARGETPLATFORM for cross compilation
49-
FROM --platform=$BUILDPLATFORM public.ecr.aws/eks-distro-build-tooling/golang:1.26.0 as builder
49+
FROM --platform=$BUILDPLATFORM public.ecr.aws/eks-distro-build-tooling/golang:1.26.1 as builder
5050
ARG TARGETARCH
5151

5252
WORKDIR /go/src/github.com/awslabs/mountpoint-s3-csi-driver

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/awslabs/mountpoint-s3-csi-driver
22

3-
go 1.26.0
3+
go 1.26.1
44

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

tests/e2e-kubernetes/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/awslabs/mountpoint-s3-csi-driver/tests/e2e-kubernetes
22

3-
go 1.26.0
3+
go 1.26.1
44

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

0 commit comments

Comments
 (0)