summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2024-05-29 13:42:11 +0200
committerStefan Haller <stefan@haller-berlin.de>2024-05-29 13:42:11 +0200
commit38ec4e646f4194db4d39dc1a9c815f25c22c57c4 (patch)
treea055488b2f23dc3f9a1ba81b4d73327253f09234 /.github
parentef1daf314af3df584249ac479a6efaa4669f4804 (diff)
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.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
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() }}