From 99a337f66dbd3adba4a519257e28fd62d4d8eae5 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Wed, 8 Mar 2023 09:51:56 -0800 Subject: [PATCH] Dockefile: bump go go 1.20 Go 1.20.2 has an important fix to an issue described in [1]. Switch from using Go 1.19 from Dockerfile, which is used for release binaries and some CI. [1] https://github.com/golang/go/issues/58624 Signed-off-by: Kir Kolyshkin --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1504b4b1b..9610f4306 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.19 +ARG GO_VERSION=1.20 ARG BATS_VERSION=v1.3.0 ARG LIBSECCOMP_VERSION=2.5.4