From 7fd5090d65f8b63ab487455566f52450add16f59 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Fri, 31 Oct 2025 12:08:05 +0000 Subject: [PATCH] chore: update Go version requirements in CI workflow - Update matrix Go version from 1.25 to 1.25.1 to match go.mod - Specify golangci-lint v1.65.1 explicitly (supports Go 1.25+) - Add skip-cache to force fresh download and avoid cached v1.64.8 --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a5a720e..2380d95 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: ['1.25'] + go-version: ['1.25.1'] steps: - name: Checkout code @@ -30,7 +30,8 @@ jobs: - name: Run linter uses: golangci/golangci-lint-action@v6 with: - version: latest + version: v1.65.1 + skip-cache: true - name: Run tests run: |