diff --git a/.github/actions/lint/action.yml b/.github/actions/lint/action.yml index 742a3c74331..43c44925b15 100644 --- a/.github/actions/lint/action.yml +++ b/.github/actions/lint/action.yml @@ -28,5 +28,4 @@ runs: uses: golangci/golangci-lint-action@349d20632dbaed38f0a492cc991152e3d351e854 # latest commit at the time that uses node20 with: version: ${{ steps.getenv.outputs.GolangCIVersion }} - only-new-issues: true args: "--config=${{ github.action_path }}/.golangci.yml" diff --git a/Makefile b/Makefile index e990dfcd3f2..e9f117a25f0 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ check-linter-version: ## lint: Runs the linters. lint: check-linter-version echo "Running linters..." - golangci-lint run --out-format=tab --new-from-rev master ./... + golangci-lint run --out-format=tab ./... ## tests: Executes any unit tests. tests: