From cecf3e07ef03239b73b312d7c2442d2ecd764548 Mon Sep 17 00:00:00 2001 From: shankar0123 Date: Sun, 15 Mar 2026 15:03:00 -0400 Subject: [PATCH] Fix go.mod: downgrade from non-existent Go 1.25 to Go 1.22 go.mod was set to go 1.25.0 which doesn't exist yet, causing Docker builds to fail with "go.mod requires go >= 1.25.0 (running go 1.22.12)". The project uses Go 1.22 as documented in Dockerfiles, CI, and README. Co-Authored-By: Claude Opus 4.6 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index f67cd00..c18846a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/shankar0123/certctl -go 1.25.0 +go 1.22.0 require ( github.com/google/uuid v1.6.0