From 7ac329bd259a19fdb567636d1c9c5abae60f6fd6 Mon Sep 17 00:00:00 2001 From: Richard Wooding Date: Fri, 9 Jan 2026 11:01:05 +0200 Subject: [PATCH] Upgrade Go to version 1.25 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated both go.mod and CI workflow to use Go 1.25, ensuring consistent tooling across development and CI environments. Changes: - go.mod: go 1.23.0 → go 1.25 - CI workflow: go-version '1.23' → '1.25' Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/go.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 123aa60..b19d49b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '1.23' + go-version: '1.25' - name: Build run: go build -v ./... diff --git a/go.mod b/go.mod index c6ed848..60af501 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/spandigitial/codeblocks -go 1.23.0 +go 1.25 require ( github.com/spf13/cobra v1.7.0