From 74df393ab8b4956fd5fa4ee91332b406dd321392 Mon Sep 17 00:00:00 2001 From: Eugene Blikh Date: Wed, 20 Aug 2025 21:42:32 +0300 Subject: [PATCH] actions: update golang version for 1.25 release * now versions that are supported in gha are 1.23-1.25 * running golangci-lint and checking code generation diff on latest 1.25 version --- .github/workflows/check.yaml | 3 +-- .github/workflows/testing.yaml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index c2e1f05..4dc8e83 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -5,10 +5,9 @@ on: pull_request: env: - GO_VERSION: 1.24 + GO_VERSION: 1.25 CODESPELL_VERSION: v2.4.1 - jobs: golangci-lint: runs-on: ubuntu-latest diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index 072555b..0281a0b 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - golang: ['1.23', 'stable'] + golang: ['1.23', '1.24', 'stable'] steps: - uses: actions/checkout@v4