From 2821d84d6b1cc43f5748e65071d6693999385fbb Mon Sep 17 00:00:00 2001 From: Andrew Nikitin Date: Mon, 8 Apr 2024 20:09:11 +0200 Subject: [PATCH] Fix the correct section --- .github/workflows/lint.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c0d0418c..168b3473 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -33,15 +33,15 @@ jobs: - uses: actions/setup-go@v5 with: go-version-file: ./go.mod - cache: true + # cache = false cause there is an open issue related to "File exists" error. + # https://github.com/golangci/golangci-lint-action/issues/807 + cache: false + - 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"