diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92258ed744a..3c8dda76f96 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,11 +26,13 @@ jobs: - name: Build relic run: make crypto/relic/build - name: Run golangci-lint - uses: golangci/golangci-lint-action@v2.3.0 + uses: golangci/golangci-lint-action@v2 with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. version: v1.41 args: -v --build-tags relic + # https://github.com/golangci/golangci-lint-action/issues/244 + skip-pkg-cache: true - name: Run ShellCheck uses: ludeeus/action-shellcheck@master with: diff --git a/.golangci.yml b/.golangci.yml index 6782e609d95..bbd162cb64f 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -27,4 +27,4 @@ issues: exclude-rules: - path: _test\.go # disable some linters on test files linters: - - unused \ No newline at end of file + - unused