From 2dc1d6a97c812f174f7fda51ada7f0394f05140c Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Mon, 25 May 2026 19:05:41 +0300 Subject: [PATCH 1/2] chore(ci): bump Go version from 1.22 to 1.23 in CI workflow go.mod requires go >= 1.23.0 but CI was pinned to 1.22. The setup-go action sets GOTOOLCHAIN=local which prevents auto-downloading a newer toolchain, causing builds to fail with: go.mod requires go >= 1.23.0 (running go 1.22.12) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f7a4d0..b43208e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/setup-go@v6 with: - go-version: "1.22" + go-version: "1.23" - name: Build run: go build ./... @@ -33,7 +33,7 @@ jobs: - uses: actions/setup-go@v6 with: - go-version: "1.22" + go-version: "1.23" - name: Build ods CLI run: go build -o ods ./cmd/ods From b3a593e19244ece5dd0de80cd00e794b9a4625e6 Mon Sep 17 00:00:00 2001 From: Xianpeng Shen Date: Mon, 25 May 2026 19:07:43 +0300 Subject: [PATCH 2/2] Update Go version badge in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42b2007..9b35dc8 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ **Reference CLI tool for Open Delivery Spec validation and generation.** [![CI](https://github.com/open-delivery-spec/cli/actions/workflows/ci.yml/badge.svg)](https://github.com/open-delivery-spec/cli/actions/workflows/ci.yml) -[![Go Version](https://img.shields.io/badge/Go-1.22+-00ADD8?logo=go)](https://go.dev) +[![Go Version](https://img.shields.io/badge/Go-1.23+-00ADD8?logo=go)](https://go.dev) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE) > **Status**: Early development. `validate` subcommands are functional. Other command groups (`generate`, `review`, `release`, `evidence`, `ci`, `approval`) are stubs that print placeholder output. See [Roadmap](https://github.com/open-delivery-spec/spec/blob/main/ROADMAP.md) for module maturity.