From 01593ad8b63c813d54c0fe95130d0f48cb1c8b0a Mon Sep 17 00:00:00 2001 From: John Guo Date: Fri, 14 Feb 2025 22:24:18 +0800 Subject: [PATCH] fix(ci): golangci-lint failed after upgrading go version to 1.24 (#4158) --- .github/workflows/golangci-lint.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index d15a80869..4e646ce4c 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -30,6 +30,7 @@ jobs: strategy: matrix: go-version: [ 'stable' ] + name: golang-ci-lint runs-on: ubuntu-latest steps: @@ -43,7 +44,7 @@ jobs: uses: golangci/golangci-lint-action@v6 with: # Required: specify the golangci-lint version without the patch version to always use the latest patch. - version: v1.62.2 + version: v1.64.5 only-new-issues: true skip-cache: true github-token: ${{ secrets.GITHUB_TOKEN }}