From 27d62d86a697048b9ddd9894ab9e7fd13c32f433 Mon Sep 17 00:00:00 2001 From: Harry Sadoyan Date: Thu, 17 Sep 2026 10:18:19 -0700 Subject: [PATCH] Require Go 1.26.8 to build the command generator `make gen` clones temporalio/cli and installs gen-commands from it. That module now requires Go 1.26.8, and CI derives its Go version from this file with GOTOOLCHAIN=local, so generation cannot install its own tool. Co-Authored-By: Claude Opus 5 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index d2e9d18..cf53164 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/temporalio/cloud-cli -go 1.26.5 +go 1.26.8 require ( github.com/aws/aws-sdk-go-v2 v1.41.11