From 0abef026ef1dc9a90012f6204bbb512a952c1507 Mon Sep 17 00:00:00 2001 From: Chris Wedgwood Date: Wed, 15 Jan 2025 12:24:18 -0800 Subject: [PATCH] remove spurious "toolchain" from go.mod Having go.mod specific a exact toolchain is not required and breaks some build systems. The preference is to remove this allow Go to use the appropriate installed tooling. --- go.mod | 2 -- 1 file changed, 2 deletions(-) diff --git a/go.mod b/go.mod index 2f0cc4a0..723716e3 100644 --- a/go.mod +++ b/go.mod @@ -2,8 +2,6 @@ module github.com/onsi/gomega go 1.22.0 -toolchain go1.22.10 - require ( github.com/google/go-cmp v0.6.0 github.com/onsi/ginkgo/v2 v2.22.2