From f9b8dfbdffb2c2d6c246b75b0562c8a16a62c56d Mon Sep 17 00:00:00 2001 From: Tony Redondo Date: Mon, 18 May 2026 16:16:56 +0200 Subject: [PATCH] ci: set up Go in release platform smoke --- .github/workflows/release.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4247566e..5bd8d2c0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,8 @@ permissions: contents: read env: + # Keep the host Go toolchain aligned with the CI mock-server harness. + GO_VERSION: "1.25.0" PYTHON_VERSION: "3.11" concurrency: @@ -35,6 +37,11 @@ jobs: with: python-version: ${{ env.PYTHON_VERSION }} + - name: Set up Go + uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0 + with: + go-version: ${{ env.GO_VERSION }} + - name: Run core Bazel tests shell: bash run: ./bazelw test //tools/... @@ -322,6 +329,11 @@ jobs: with: python-version: ${{ env.PYTHON_VERSION }} + - name: Set up Go + uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0 + with: + go-version: ${{ env.GO_VERSION }} + - name: Ensure jq is available (Windows) if: runner.os == 'Windows' shell: pwsh