From 38ec4e646f4194db4d39dc1a9c815f25c22c57c4 Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Wed, 29 May 2024 13:42:11 +0200 Subject: [PATCH] Pin golangci version to 1.58 It is annoying when CI builds suddenly start to fail because the linter was updated and finds new things to complain about. Updating the linter and fixing the code accordingly should be a dedicated activity. --- .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 c0e472727..f6e2af260 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -172,7 +172,7 @@ jobs: - name: Lint uses: golangci/golangci-lint-action@v3.7.0 with: - version: latest + version: v1.58 - name: errors run: golangci-lint run if: ${{ failure() }}