From 4d097af534a07ac992d0ca34e242573d03031946 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 7 May 2024 14:22:59 -0700 Subject: [PATCH] ci/gha: bump golangci-lint-action from 5 to 6 Note that github-actions output format is deprecated and no longer supported, and it is also no longer needed since setup-go problem matcher already handles default golangci-lint output format ("colored-line-number"). Signed-off-by: Kir Kolyshkin (cherry picked from commit f452f667c0861ba19460dbaea47e8f81e63262e1) Signed-off-by: Kir Kolyshkin --- .github/workflows/validate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index c7bbaf246..8a814c185 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -31,14 +31,14 @@ jobs: run: | sudo apt -q update sudo apt -qy install libseccomp-dev - - uses: golangci/golangci-lint-action@v5 + - uses: golangci/golangci-lint-action@v6 with: version: v1.53 # Extra linters, only checking new code from a pull request. - name: lint-extra if: github.event_name == 'pull_request' run: | - golangci-lint run --config .golangci-extra.yml --new-from-rev=HEAD~1 --out-format=github-actions + golangci-lint run --config .golangci-extra.yml --new-from-rev=HEAD~1 compile-buildtags: runs-on: ubuntu-22.04