From 7bb70a2e109e8208a576be87486e3f635c6474e9 Mon Sep 17 00:00:00 2001 From: qingliu Date: Mon, 8 Jun 2026 04:58:15 +0000 Subject: [PATCH] fix(go): bump go.work go directive to 1.26.4 PR #35 bumped kustomize/go.mod to go 1.26.4 to rebuild with the fixed Go stdlib, but go.work was left at go 1.26.3. The Alauda release build then failed in goreleaser with "go.work file requires go >= 1.26.4, but go.work lists go 1.26.3", so no CLI artifact was produced. Align the go.work go directive with the highest module requirement to unblock the release build. --- go.work | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.work b/go.work index 90d589d9b7..49090c82cb 100644 --- a/go.work +++ b/go.work @@ -1,4 +1,4 @@ -go 1.26.3 +go 1.26.4 use ( ./api