From 80fb8e891b23eccb175818bace68bd7dc2da69a0 Mon Sep 17 00:00:00 2001 From: marius-kilocode Date: Mon, 14 Sep 2026 15:58:07 +0200 Subject: [PATCH] fix(ci): install Go 1.26 for kilo-bench smoke tests --- .github/workflows/smoke-test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml index 7e69df2dee8..2329dae1ebe 100644 --- a/.github/workflows/smoke-test.yml +++ b/.github/workflows/smoke-test.yml @@ -45,6 +45,9 @@ jobs: env: KILO_API_KEY: ${{ secrets.KILO_API_KEY }} KILO_ORG_ID: ${{ secrets.KILO_ORG_ID }} + # kilo-bench's capture helper requires a Go toolchain >= 1.26. The runner + # image pins GOTOOLCHAIN=local, so allow Go to fetch the required toolchain. + GOTOOLCHAIN: auto steps: - name: Checkout kilo-bench uses: actions/checkout@v6 # kilocode_change @@ -52,6 +55,12 @@ jobs: repository: Kilo-Org/kilo-bench token: ${{ secrets.BENCH_GITHUB_TOKEN }} + - name: Set up Go + uses: actions/setup-go@v7 + with: + go-version: "1.26" + cache: false + - name: Install uv uses: astral-sh/setup-uv@v6 with: