From 75a4546b2bdd0a5f190cc8e1b6c636077c6e81f9 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 8 Apr 2025 12:30:30 -0700 Subject: [PATCH] go.mod: rm toolchain This was added by dependabot in commit 0b536265. Seems there is a bug about it: https://github.com/dependabot/dependabot-core/issues/11933. Having "toolchain" means instead of using installed go version to build/test, the version specified in toolchain is [downloaded and] used, which might not be what we actually want. For more details on toolchain directive, see https://go.dev/doc/toolchain. Signed-off-by: Kir Kolyshkin --- go.mod | 2 -- 1 file changed, 2 deletions(-) diff --git a/go.mod b/go.mod index 7b6d2ebf3..7f1b5a55f 100644 --- a/go.mod +++ b/go.mod @@ -2,8 +2,6 @@ module github.com/opencontainers/runc go 1.23.0 -toolchain go1.24.1 - require ( github.com/checkpoint-restore/go-criu/v7 v7.2.0 github.com/containerd/console v1.0.4