From fc09dbb096721591e0d2e31ab495a6b77c17eeb2 Mon Sep 17 00:00:00 2001 From: Matthew Sanabria Date: Sat, 7 Mar 2026 01:35:30 -0500 Subject: [PATCH] misc: relax go.mod version Go isn't quite clear on what it wants the `go` directive to be in `go.mod`, but the community consensus is to use the `.0` patch release of the oldest supported Go version. Granted, that's generally the advice for libraries but there's no harn in relaxing this version for this module that's going to be built as a container image. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 6bc0ebc..0ed0145 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/oxidecomputer/oxide-cloud-controller-manager -go 1.25.3 +go 1.25.0 require ( github.com/google/uuid v1.6.0