From f02cfeecb047534ec4bbb611fd7f2124afeff76e Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Thu, 25 Jan 2024 18:12:04 +0100 Subject: [PATCH] github: disable caching in golangci-lint Something in the cache is causing false linting errors. --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ed80c2d0f..5472cdaf1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,6 +40,9 @@ jobs: version: v1.54.2 args: --timeout 5m0s working-directory: bib + skip-cache: true + skip-pkg-cache: true + skip-build-cache: true shellcheck: name: "🐚 Shellcheck"