From 668dd88eb6755ff881fbb6685ff0d2b0c5366685 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 04:25:33 +0000 Subject: [PATCH 1/2] chore(deps): bump actions/setup-go from 5 to 6 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/update.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e51e5582bb..b0b3cbff57 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v6.0.3 - name: Install Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: 1.21.x cache: false diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d42305180f..9e7cb1ef13 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@v6.0.3 - name: Install Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: 1.19 From 2554a1cd23944ae4b93676e34e7d00487b59ad85 Mon Sep 17 00:00:00 2001 From: Aleksandr Razumov Date: Mon, 15 Jun 2026 07:26:06 +0300 Subject: [PATCH 2/2] ci: use go-version-file to match go.mod toolchain setup-go v6 defaults GOTOOLCHAIN=local, so it no longer auto-downloads the toolchain required by go.mod. Pinning go-version to 1.21.x/1.19 then fails because go.mod requires go 1.26rc1. Use go-version-file: go.mod so the correct toolchain is installed. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/ci.yml | 2 +- .github/workflows/update.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0b3cbff57..507eddd95c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - name: Install Go uses: actions/setup-go@v6 with: - go-version: 1.21.x + go-version-file: go.mod cache: false diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 9e7cb1ef13..f4cc317b23 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -20,7 +20,7 @@ jobs: - name: Install Go uses: actions/setup-go@v6 with: - go-version: 1.19 + go-version-file: go.mod - name: Get Go environment id: go-env