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 <noreply@anthropic.com>
This commit is contained in:
shankar0123
2026-03-15 15:03:00 -04:00
parent 3f6b0aa995
commit cecf3e07ef
+1 -1
View File
@@ -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