From 426a81fbe7f4d1e2a5be7f1b209929be7cd5a247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Th=C3=B6mmes?= Date: Mon, 5 Jan 2026 15:48:46 +0100 Subject: [PATCH] Align go version when linting code with all other actions This is the only place we're still hardcoding the Golang version instead of inferring it from the go.mod file and it breaks PRs that update us to 1.25, so this fixes that. --- .github/workflows/verify.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/verify.yaml b/.github/workflows/verify.yaml index 0bbe60c25..d6b9bef61 100644 --- a/.github/workflows/verify.yaml +++ b/.github/workflows/verify.yaml @@ -28,7 +28,7 @@ jobs: - uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0 with: - go-version: '1.24' + go-version-file: './go.mod' check-latest: true - name: golangci-lint