From 5abce03c661f6c7e93005ad278e00d53e2cfbf63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Sat, 5 Aug 2023 01:06:19 +0200 Subject: [PATCH] Update to Go 1.19 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We already require it, because docker/credential-helpers uses Go 1.19 os/exec.Cmd.Environ(). So make that official. > go mod tidy -go=1.19 Signed-off-by: Miloslav Trmač --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 634f1abf23..88761bff30 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/containers/skopeo -go 1.18 +go 1.19 require ( github.com/containers/common v0.55.0