From 551c0b1457e9103851bb61e58e1a4cfda3859c1c Mon Sep 17 00:00:00 2001 From: Mathias Date: Wed, 3 Jun 2026 07:58:57 +0200 Subject: [PATCH] fix(ci): align go directive to estate 1.26.1 so setup-go uses host Go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI check failed because go.mod declared 'go 1.25.0' — the only repo not on the host's 1.26.x line. actions/setup-go then tried to download 1.25.0 on the self-hosted runner (fails), while cobalt (1.26.1) and template-go-agent (1.26) serve from the host/cache. Deps need >=1.25, so 1.26.1 satisfies them and matches the estate. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index c65c58f..58215c0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module gitea.d-ma.be/mathias/tapir -go 1.25.0 +go 1.26.1 require ( github.com/a-h/templ v0.3.1020