From 6cd01497ee55d74f34de52c472c9be07803c9fb2 Mon Sep 17 00:00:00 2001 From: Toan Nguyen Date: Mon, 4 Mar 2024 23:32:45 +0700 Subject: [PATCH] upgrade golangci-lint-action@v4 --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea259ca..7603b46 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,11 +47,14 @@ jobs: cd ./example/hasura docker-compose up -d - name: Lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v4 with: version: latest only-new-issues: true - skip-cache: false + skip-cache: true + skip-pkg-cache: true + skip-build-cache: true + args: --timeout=120s - name: Run Go unit tests for example/subscription run: | cd example/subscription