From 9039af6990c8a95bb9341ef37f18283583c9fd10 Mon Sep 17 00:00:00 2001 From: Sebastian Spaink <3441183+sspaink@users.noreply.github.com> Date: Wed, 26 Oct 2022 11:39:03 -0500 Subject: [PATCH] chore: Increase golangci-lint timeout (#12106) --- .github/workflows/golangci-lint.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index f4b7d078c..68ebdcbd0 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -28,6 +28,7 @@ jobs: with: version: v1.50.0 only-new-issues: true + args: --timeout 15m0s --verbose golangci-master: if: github.ref == 'refs/heads/master' name: lint-master-all @@ -42,4 +43,4 @@ jobs: with: version: v1.50.0 only-new-issues: true - args: --issues-exit-code=0 + args: --timeout 15m0s --issues-exit-code=0 --verbose