From b09ed5864b92de6f60427cb98fd352a92a69edcc Mon Sep 17 00:00:00 2001 From: Miguel Soriano Date: Tue, 22 Oct 2024 16:18:21 +0200 Subject: [PATCH] chore: update golangci-lint in GH action to 1.61.0 The current version was causing CI issues where the GitHub runner was stopping due to what we think is excessive usage of resource. Possibly a memory leak. Updating the golangci-lint version used by the GitHub action fixes the issue. We also get the newest changes and fixes by updating the version. --- .github/workflows/check-pull-request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-pull-request.yaml b/.github/workflows/check-pull-request.yaml index de53eb0b..10f61b1e 100644 --- a/.github/workflows/check-pull-request.yaml +++ b/.github/workflows/check-pull-request.yaml @@ -67,7 +67,7 @@ jobs: - name: Run the linter uses: golangci/golangci-lint-action@v3 with: - version: v1.56.2 + version: v1.61.0 args: --timeout 10m skip-pkg-cache: true skip-build-cache: true