From a29b627bdd691908ff4d85657b2277099182ed00 Mon Sep 17 00:00:00 2001 From: Andrew Nikitin Date: Mon, 8 Apr 2024 20:03:52 +0200 Subject: [PATCH] Fix "File exists" error --- .github/workflows/lint.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e79088bc..c0d0418c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -34,13 +34,14 @@ jobs: with: go-version-file: ./go.mod cache: true - - name: Setup tmate session - uses: mxschmitt/action-tmate@v3 - name: Run golangci-lint uses: golangci/golangci-lint-action@v4 with: version: v1.52.2 args: --config .github/linters/.golangci.yaml + # cache = false cause there is an open issue related to "File exists" error. + # https://github.com/golangci/golangci-lint-action/issues/807 + cache: false super-lint: name: "Super Linter"