From fd9ea30184b86dd4140593f9fba41a74822d1160 Mon Sep 17 00:00:00 2001 From: Hein Date: Fri, 18 Sep 2026 21:58:06 +0200 Subject: [PATCH] fix(ci): install Go 1.26 to match go.mod's toolchain requirement go.mod declares "go 1.26.0" but both workflows' setup-go pinned 1.25, causing "compile: version go1.26.0 does not match go tool version go1.25.13" once the service-network-alias fix let tests actually run. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/integration.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 58a158d..0e8ed49 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -32,7 +32,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.25' + go-version: '1.26' cache: true - name: Run all tests diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2f2b5ea..3a5f1f7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.25' + go-version: '1.26' cache: true - name: Get version from tag