From f6757d7c9680d960f39e85daed7d389ed96839fb Mon Sep 17 00:00:00 2001 From: Brandon Dunne Date: Wed, 14 Aug 2024 12:07:08 -0400 Subject: [PATCH] Drop the toolchain and move minimum to 1.23 "If the toolchain line is omitted, the module or workspace is considered to have an implicit toolchain goV line, where V is the Go version from the go line." https://go.dev/doc/toolchain --- manageiq-operator/go.mod | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/manageiq-operator/go.mod b/manageiq-operator/go.mod index d81b4dd48..604aa39eb 100644 --- a/manageiq-operator/go.mod +++ b/manageiq-operator/go.mod @@ -1,8 +1,6 @@ module github.com/ManageIQ/manageiq-pods/manageiq-operator -go 1.22.0 - -toolchain go1.22.6 +go 1.23 require ( github.com/onsi/ginkgo/v2 v2.20.0