From e0dedfdcbb491ee72809bec9c6eba68daf5a64e5 Mon Sep 17 00:00:00 2001 From: Michael Kedar Date: Thu, 5 Feb 2026 13:23:30 +1100 Subject: [PATCH] fix(workflows): add GOTOOLCHAIN=auto env var The renovate PRs can't seem to update the go version and run the lints because the Go binary is cached? This should allow go to download the correct tool chain at runtime maybe --- .github/workflows/lint.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 50146778b2a..8dde6f354c5 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -38,6 +38,8 @@ jobs: lint: name: Lint and format runs-on: ubuntu-latest + env: + GOTOOLCHAIN: auto steps: - name: Check out code uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2