From 4c254930f06164eae6680b208a7461036ee4a42c Mon Sep 17 00:00:00 2001 From: web3-bot <81333946+web3-bot@users.noreply.github.com> Date: Fri, 30 May 2025 14:03:06 +0200 Subject: [PATCH] ci: update golangci-lint version (#3282) Co-authored-by: Piotr Galar --- .github/workflows/go-check.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go-check.yml b/.github/workflows/go-check.yml index e2ff65cae..e5911699c 100644 --- a/.github/workflows/go-check.yml +++ b/.github/workflows/go-check.yml @@ -27,7 +27,7 @@ jobs: matrix: go: [ "1.23.x", "1.24.x" ] env: - GOLANGCI_LINT_VERSION: v2.0.2 + GOLANGCI_LINT_VERSION: v2.1.0 name: golangci-lint (Go ${{ matrix.go }}) steps: - uses: actions/checkout@v4 @@ -35,14 +35,14 @@ jobs: with: go-version: ${{ matrix.go }} - name: golangci-lint (Linux) - uses: golangci/golangci-lint-action@v7 + uses: golangci/golangci-lint-action@v8 with: args: --timeout=5m version: ${{ env.GOLANGCI_LINT_VERSION }} only-new-issues: true - name: golangci-lint (Windows) if: success() || failure() # run this step even if the previous one failed - uses: golangci/golangci-lint-action@v7 + uses: golangci/golangci-lint-action@v8 env: GOOS: "windows" with: @@ -51,7 +51,7 @@ jobs: only-new-issues: true - name: golangci-lint (OSX) if: success() || failure() # run this step even if the previous one failed - uses: golangci/golangci-lint-action@v7 + uses: golangci/golangci-lint-action@v8 env: GOOS: "darwin" with: