From 7c8d4d29ff665e0d5a81400b18024f1d75b1c08b Mon Sep 17 00:00:00 2001 From: Shankar Date: Mon, 23 Mar 2026 17:05:45 -0400 Subject: [PATCH] fix: pin Go version to 1.23 (minimum for MCP SDK compatibility) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The MCP Go SDK (modelcontextprotocol/go-sdk) requires Go 1.23+. Previous commit accidentally bumped to 1.25 via go mod tidy on a newer toolchain. Pin to 1.23 as the minimum compatible version — closest to our original 1.22 baseline. CI updated to match. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 884ab2a..1df5e6f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.25' + go-version: '1.23' - name: Go Build run: | diff --git a/go.mod b/go.mod index 19e6878..05bfdf2 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/shankar0123/certctl -go 1.25.0 +go 1.23.0 require ( github.com/google/uuid v1.6.0