From 0977473dd24fc2e393d1a4467856b98e14917cee Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Mar 2025 14:50:15 -0400 Subject: [PATCH] =?UTF-8?q?chore(deps):=20update=20golangci/golangci-lint?= =?UTF-8?q?=20(1.64.5=20=E2=86=92=201.64.7)=20(#1810)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(deps): update golangci/golangci-lint (1.64.5 → 1.64.7) | datasource | package | from | to | | --------------- | ---------------------- | ------ | ------ | | github-releases | golangci/golangci-lint | 1.64.5 | 1.64.7 | * chore(ci): update golangci-lint workflow to include linter filter - Modified the workflow to check for linter output in addition to Go files. - Updated conditions for setting up Go and linting code to include linter filter. Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> * fix version Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> --------- Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> --- .github/workflows/golangci-lint.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index cca4c4c1..1d7107f3 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -27,19 +27,20 @@ jobs: filters: | go: - '**/*.go' + linter: + - .github/workflows/golangci-lint.yml - name: Setup Go uses: actions/setup-go@v5 - if: ${{ steps.filter.outputs.go == 'true' }} + if: ${{ steps.filter.outputs.go == 'true' || steps.filter.outputs.linter == 'true'}} with: go-version-file: "go.mod" cache-dependency-path: | go.sum - name: Lint code - if: ${{ steps.filter.outputs.go == 'true' }} + if: ${{ steps.filter.outputs.go == 'true' || steps.filter.outputs.linter == 'true'}} uses: golangci/golangci-lint-action@v6 - with: - # renovate: datasource=github-releases depName=golangci/golangci-lint - version: v1.64.5 + with: + version: v1.64.7 # renovate: datasource=github-releases depName=golangci/golangci-lint args: -v --timeout=10m