From a73e254862e3e6cc65b74f5bfa4e56bdc1485705 Mon Sep 17 00:00:00 2001 From: claude-timemachine Date: Tue, 2 Jun 2026 18:58:38 +0200 Subject: [PATCH] ci: pin go directive to 1.25 to match alpine builder base image CI build of golang:1.25-alpine ships go 1.25.10; auto-generated go.mod had 1.26.3 from local toolchain. Use 1.25 to match the other automc services (auth-service, server-manager etc all on 1.25). --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index a9407f6..2c0349e 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module git.timemachine.center/timemachine/cloud-svc -go 1.26.3 +go 1.25