From f9d026334a0b00a7fb7755295cf9520f5b9b9b99 Mon Sep 17 00:00:00 2001 From: Cuong Manh Le Date: Wed, 12 Nov 2025 15:07:44 +0700 Subject: [PATCH] .github/workflows: upgrade staticcheck-action to v1.4.0 While at it, also bump go version to 1.24 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4b44d4..551241f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: fail-fast: false matrix: os: ["windows-latest", "ubuntu-latest", "macOS-latest"] - go: ["1.23.x"] + go: ["1.24.x"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 @@ -19,8 +19,8 @@ jobs: with: go-version: ${{ matrix.go }} - run: "go test -race ./..." - - uses: dominikh/staticcheck-action@v1.3.1 + - uses: dominikh/staticcheck-action@v1.4.0 with: - version: "2024.1.1" + version: "2025.1.1" install-go: false cache-key: ${{ matrix.go }}