From 757912eda5d8558899a1da15de0c16eb3d681f92 Mon Sep 17 00:00:00 2001 From: sergiuferentz Date: Wed, 2 Sep 2026 16:09:12 +0100 Subject: [PATCH] ci: Use stable Go version in presubmit for buildozer github.com/bazelbuild/buildtools/buildozer@latest has transitive dependencies (golang.org/x/sys) that now require Go >= 1.25.0. Update actions/setup-go in the run-buildozer job to use 'stable' rather than the pinned 1.23.1 so that buildozer can be installed successfully. --- .github/workflows/presubmit.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/presubmit.yaml b/.github/workflows/presubmit.yaml index 78af400db..94d990daf 100644 --- a/.github/workflows/presubmit.yaml +++ b/.github/workflows/presubmit.yaml @@ -28,7 +28,7 @@ jobs: - name: Install go uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0 with: - go-version: '1.23.1' + go-version: 'stable' - name: Install buildozer run: go install github.com/bazelbuild/buildtools/buildozer@latest - name: Validate formatting