From 783a3d5ce755ff91ea48f07ed9d7aa57b7f1a1e2 Mon Sep 17 00:00:00 2001 From: "Luis Gustavo S. Barreto" Date: Thu, 11 Jun 2026 00:21:38 -0300 Subject: [PATCH] ci: pin Buildroot to 2026.02.2 for Go 1.25.8+ Buildroot tag 2026.02 ships Go 1.25.7, but the agent's go.mod requires Go >= 1.25.8. With GOTOOLCHAIN=local and GOPROXY=off the offline build cannot fetch a newer toolchain and fails. The 2026.02.2 point release ships Go 1.26.3, satisfying the requirement. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5540a1..095a948 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,7 @@ jobs: - name: Clone Buildroot run: | - git clone --depth 1 --branch 2026.02 https://github.com/buildroot/buildroot.git /tmp/buildroot + git clone --depth 1 --branch 2026.02.2 https://github.com/buildroot/buildroot.git /tmp/buildroot - name: Cache Buildroot downloads uses: actions/cache@v4