From 67af374da98939b1a6f1da02af0ae3c413ec7f55 Mon Sep 17 00:00:00 2001 From: Fabio Bonelli Date: Wed, 20 Jul 2022 13:10:17 +0200 Subject: [PATCH] chore: increase golangci-lint-action timeout Increase golangci-lint-action timeout because the action takes a more than 1 minutes to run on GitHub's servers (https://github.com/golangci/golangci-lint-action/issues/297). Enable verbose mode as well, so we can understand what's going on. --- .github/workflows/lint.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3b178e6..322e8a1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,3 +13,5 @@ jobs: with: go-version: 1.18.x - uses: golangci/golangci-lint-action@v3 + with: + args: --timeout 3m --verbose