From 139501b67969305c30f3357ab882a3d37eb70e15 Mon Sep 17 00:00:00 2001 From: Markus Waldheim <31657644+mwaldheim@users.noreply.github.com> Date: Sun, 13 Sep 2026 15:56:43 +0200 Subject: [PATCH] ci: test against stable Go 1.27 instead of the release candidate\n\nGo 1.27.0 has been generally available since August 2026 (now at\n1.27.1). Replace the temporary 1.27rc1 matrix entry with the stable\n1.27 line so CI resolves and tests against the latest 1.27.x patch\nrelease, matching the same treatment already applied in the main\nsemrel repository CI matrix.\n\nNo Go 1.28 pre-release exists yet to add (dev cycle started July\n2026, RC1 not expected before around January 2027).\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .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 273702f..c5e6f4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - go: ["1.25", "1.26", "1.27rc1"] + go: ["1.25", "1.26", "1.27"] steps: - name: Check out repository