From 9a18f0829fc2fe98b0025f44bbe2bf1d8eed6d7f Mon Sep 17 00:00:00 2001 From: Ahmed Samir Date: Sun, 8 Oct 2023 17:24:22 +0300 Subject: [PATCH] fix: disable cache in golangci-lint Signed-off-by: Ahmed Samir --- .github/workflows/build_test_pr.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_test_pr.yml b/.github/workflows/build_test_pr.yml index e1ac32119..9653d5c58 100644 --- a/.github/workflows/build_test_pr.yml +++ b/.github/workflows/build_test_pr.yml @@ -42,9 +42,10 @@ jobs: uses: golangci/golangci-lint-action@v3 with: version: latest + cache: false skip-pkg-cache: true - args: --verbose --timeout=10m - + args: --verbose --timeout=2m + - name: Install dependencies run: go mod download