From badfd1b6e5c7081cf5623e72aeaea7279eca244d Mon Sep 17 00:00:00 2001 From: Stanislav Bogatyrev Date: Wed, 18 Nov 2020 19:27:05 +0300 Subject: [PATCH] [#183] Increase golangci-lint timeout Signed-off-by: Stanislav Bogatyrev --- .github/workflows/go.yml | 3 ++- Makefile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0542dc5b..fb44213b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -55,5 +55,6 @@ jobs: - name: golangci-lint uses: golangci/golangci-lint-action@v2 with: - version: v1.29 + version: v1.30 + args: --timeout=5m only-new-issues: true diff --git a/Makefile b/Makefile index 9ea9b274..358f5f32 100644 --- a/Makefile +++ b/Makefile @@ -104,7 +104,7 @@ test: test_dep # Run linters lint: - @golangci-lint run + @golangci-lint --timeout=5m run # Run linters in Docker docker/lint: