From b33227a5798ac992e1e05324837468ff31c93a7c Mon Sep 17 00:00:00 2001 From: senke Date: Wed, 15 Apr 2026 15:06:50 +0200 Subject: [PATCH] fix(ci): bump go.work to 1.25 to match veza-backend-api/go.mod Backend Go CI was still failing on 3d1f127ad with: go: module . listed in go.work file requires go >= 1.25.0, but go.work lists go 1.24.0; to update it: go work use The go.mod of veza-backend-api was bumped to 1.25.0 in bec75f143 ("ci: bump Go to 1.25 and fix goimports drift"), but go.work at the repo root was never updated to match. The previous CI runs tolerated the mismatch through toolchain auto-download at the cost of ~3 min per job; today's dependency bumps (3d1f127ad) apparently pulled a directive that flips Go into strict mode and makes the mismatch fatal. Local go.work had been updated to 1.25.0 automatically by `go get` during the dep bumps but was never staged, so the previous commit shipped go.work still at 1.24.0. This commit stages the one-line version bump that go had already applied locally. --- go.work | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.work b/go.work index ff9e4d4db..5a26a147d 100644 --- a/go.work +++ b/go.work @@ -1,3 +1,3 @@ -go 1.24.0 +go 1.25.0 use ./veza-backend-api