From 7eb266de693d631a773a3b92eae840794a819eab Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Thu, 26 Jan 2023 16:07:30 +0100 Subject: [PATCH] go.mod: bump to Go 1.19 Go 1.20 will be there soon, I think it's time to move our go.mod to latest stable. We can then remove the compat in our vendor.Dockerfile Downstream projects like compose or github.com/linuxkit/linuxkit should not be affected. Signed-off-by: CrazyMax --- go.mod | 2 +- hack/dockerfiles/vendor.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index d7fb2d35..95eff0cf 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/docker/buildx -go 1.17 +go 1.19 require ( github.com/aws/aws-sdk-go-v2/config v1.15.5 diff --git a/hack/dockerfiles/vendor.Dockerfile b/hack/dockerfiles/vendor.Dockerfile index 7b0b3c3b..e5e9b7a6 100644 --- a/hack/dockerfiles/vendor.Dockerfile +++ b/hack/dockerfiles/vendor.Dockerfile @@ -13,7 +13,7 @@ RUN --mount=target=/context \ --mount=target=/go/pkg/mod,type=cache <