From 21ae632c9b24256468e5ff609d0378c72d3d0e0a Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Thu, 2 Jul 2026 10:41:00 +0200 Subject: [PATCH] Remove obsolete "errors" step from lint job on CI When this was added (dafac52a4c201), the job used golangci-lint-action@v2, which had the problem that its step log was sparse (it mostly produced PR annotations), so re-running `golanci-lint run` was a workaround to dump readable errors into the console. The current version of the action no longer has this problem, so we can remove that fallback (it would conflict with what we are about to do in this branch). --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eccaf4f4d..2f7c1d2d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -172,9 +172,6 @@ jobs: with: # If you change this, make sure to also update scripts/golangci-lint-shim.sh version: v2.4.0 - - name: errors - run: golangci-lint run - if: ${{ failure() }} upload-coverage: # List all jobs that produce coverage files needs: [unit-tests, integration-tests]