From 3b55c314454149be36145b5d387e2b33106b652a Mon Sep 17 00:00:00 2001 From: Rodrigo Campos Date: Thu, 19 Sep 2024 20:55:24 +0200 Subject: [PATCH] go.mod: Force 1.22.4 as min go version Go now enforces the "go" version in go.mod as a minimum version[1]. As documented in the 1.2.0-rc.1 release notes, 1.22.4 is needed. Let's enforce it. [1]: https://go.dev/doc/toolchain Signed-off-by: Rodrigo Campos --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index cd65bd3b7b7..7257eeb998b 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/opencontainers/runc -go 1.22 +go 1.22.4 require ( github.com/checkpoint-restore/go-criu/v6 v6.3.0