From 9c226d9c542bfd96e482fbedba0030379166c8a7 Mon Sep 17 00:00:00 2001 From: Patrick Pacher Date: Wed, 27 Mar 2024 15:17:38 +0100 Subject: [PATCH] Update golangci-lint-action to v4 --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d8c4da70..c5cff593 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -5,6 +5,7 @@ on: branches: - master - develop + pull_request: branches: - master @@ -27,11 +28,10 @@ jobs: run: go mod download - name: Run golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v4 with: version: v1.52.2 only-new-issues: true - skip-go-installation: true args: -c ./.golangci.yml --timeout 15m - name: Run go vet