From 02371f3127b0f788a0c78ae830e5fb0250cfe34b Mon Sep 17 00:00:00 2001 From: Guillaume Lours <705411+glours@users.noreply.github.com> Date: Tue, 29 Oct 2024 10:29:06 +0100 Subject: [PATCH] bump golang minimal version to 1.22 in go.mod Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com> --- Dockerfile | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a83b8d530d..575368d7da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -ARG GO_VERSION=1.22.7 +ARG GO_VERSION=1.22.8 ARG XX_VERSION=1.2.1 ARG GOLANGCI_LINT_VERSION=v1.60.2 ARG ADDLICENSE_VERSION=v1.0.0 diff --git a/go.mod b/go.mod index c4060f7c11..5cfe9790c4 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/docker/compose/v2 -go 1.21.0 +go 1.22.0 require ( github.com/AlecAivazis/survey/v2 v2.3.7