Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN MP_ARCH=`echo ${TARGETARCH} | sed s/amd64/x86_64/` && \
patchelf --set-rpath '$ORIGIN' /mountpoint-s3/bin/mount-s3

# Build driver. Use BUILDPLATFORM not TARGETPLATFORM for cross compilation
FROM --platform=$BUILDPLATFORM public.ecr.aws/eks-distro-build-tooling/golang:1.26.2-al23 as builder
FROM --platform=$BUILDPLATFORM public.ecr.aws/eks-distro-build-tooling/golang:1.26.3-al23 as builder
ARG TARGETARCH

WORKDIR /go/src/github.com/awslabs/mountpoint-s3-csi-driver
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.local
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN cd mountpoint-s3 && \
#

# Use BUILDPLATFORM not TARGETPLATFORM for cross compilation
FROM --platform=$BUILDPLATFORM public.ecr.aws/eks-distro-build-tooling/golang:1.26.2-al23 as builder
FROM --platform=$BUILDPLATFORM public.ecr.aws/eks-distro-build-tooling/golang:1.26.3-al23 as builder
ARG TARGETARCH

WORKDIR /go/src/github.com/awslabs/mountpoint-s3-csi-driver
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/awslabs/mountpoint-s3-csi-driver

go 1.26.2
go 1.26.3

require (
github.com/aws/aws-sdk-go-v2 v1.39.2
Expand Down Expand Up @@ -98,7 +98,7 @@ require (
github.com/google/go-cmp v0.7.0
github.com/google/uuid v1.6.0
github.com/moby/sys/mountinfo v0.7.1 // indirect
golang.org/x/net v0.48.0
golang.org/x/net v0.48.0 // indirect
golang.org/x/sys v0.39.0
golang.org/x/text v0.32.0 // indirect
google.golang.org/protobuf v1.36.10
Expand Down
2 changes: 1 addition & 1 deletion pkg/driver/node/node_test.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package node_test

import (
"context"
"errors"
"io/fs"
"strings"
"testing"

csi "github.com/container-storage-interface/spec/lib/go/csi"
"github.com/golang/mock/gomock"
"golang.org/x/net/context"
corev1 "k8s.io/api/core/v1"

"github.com/awslabs/mountpoint-s3-csi-driver/pkg/driver/node"
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e-kubernetes/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/awslabs/mountpoint-s3-csi-driver/tests/e2e-kubernetes

go 1.26.2
go 1.26.3

require (
github.com/aws/aws-sdk-go-v2 v1.39.2
Expand Down