diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 4d22eae..a47fa3c 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -1,17 +1,28 @@ name: golangci-lint + on: + push: + tags: + - v* + branches: + - master pull_request: + jobs: golangci: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: golangci-lint - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v3 with: - version: v2.5.2 - skip-pkg-cache: true - skip-build-cache: true - args: --issues-exit-code=1 - only-new-issues: true + # Required: the version of golangci-lint is required and must be specified without a patch version: + # we always use the latest patch version. + version: v1.52 + # Optional: if set to `true` then the all caching functionality will be complete disabled, + # takes precedence over all other caching options. + skip-cache: true