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"