From cccae3b4082c633cc64124c617f6892cce4331be Mon Sep 17 00:00:00 2001 From: juanatsap Date: Fri, 31 Oct 2025 12:02:11 +0000 Subject: [PATCH] fix: upgrade golangci-lint action to v6 for Go 1.25.1 support - Update golangci-lint-action from v3 to v6 - Remove redundant cache skip flags (v6 has better defaults) - Fixes compatibility with Go 1.25.1 specified in go.mod --- .github/workflows/test.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cb902d4..a5a720e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,12 +28,9 @@ jobs: run: go mod download - name: Run linter - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: version: latest - skip-cache: false - skip-pkg-cache: false - skip-build-cache: false - name: Run tests run: |