From d21caa4ab42810d75e4339948059bf5110937084 Mon Sep 17 00:00:00 2001 From: Keith Bawden Date: Sun, 19 Jul 2026 09:59:08 +1000 Subject: [PATCH] Dropped Go 1.24.x from CI test matrix go.mod floors the language version at go 1.25.7 and setup-go@v7 runs with GOTOOLCHAIN=local, so the 1.24.x runners fail at go mod download rather than upgrading the toolchain. The module cannot build on 1.24 regardless, so the leg only ever went red. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1838089..a0b904d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - go-version: ['1.25.x', '1.24.x'] + go-version: ['1.25.x'] os: [ubuntu-latest, macos-latest] steps: