From b453846e8db8ba9685885bb5f9d84f104d9842e3 Mon Sep 17 00:00:00 2001 From: Albert Bausili Date: Thu, 4 Jun 2026 08:26:43 +0200 Subject: [PATCH] ci(release): bump release workflow Go 1.26.3 -> 1.26.4 go.mod requires go >= 1.26.4; the release workflow ran setup-go 1.26.3 with GOTOOLCHAIN=local, so 'Verify module' + the binary builds failed on v1.4.6. The module itself publishes via the tag (proxy has v1.4.6); this fixes the workflow so future releases verify + attach binaries. Completes the toolchain unification (ci.yml was already on 1.26.4). --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 90fb2c1..f0ae917 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: - go-version: "1.26.3" + go-version: "1.26.4" - name: Verify module run: | go mod verify @@ -48,7 +48,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: - go-version: "1.26.3" + go-version: "1.26.4" - name: Build env: GOOS: ${{ matrix.goos }}