From 9c082c5c775de27e9d9fdd89620739a498d6c21c Mon Sep 17 00:00:00 2001 From: Garrison Davis Date: Fri, 17 Mar 2023 09:25:22 -0600 Subject: [PATCH] Increase golangci-lint timeout to 8 minutes This is the time being used in our other CI pipeline. The alternative to doing this is ripping out all of this code so that we're not running two CI pipelines... --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60061e8af..c33f4f412 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: with: # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version # version: v1.29 - args: --timeout=5m + args: --timeout=8m validate: name: Code Checks