From 1afeb60c81bfdd6d904e38fdafec28ca36965294 Mon Sep 17 00:00:00 2001 From: Stefan Berger Date: Wed, 7 Jan 2026 08:04:09 -0500 Subject: [PATCH] ci: Ditch go 1.23 and use 1.25 Signed-off-by: Stefan Berger --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a42994b1..a7686fff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: 1.23 + go-version: 1.25 - name: Set env shell: bash @@ -62,7 +62,7 @@ jobs: tests: strategy: matrix: - go: ["1.24", "1.23"] + go: ["1.24", "1.25"] os: [ubuntu-22.04, windows-2022] name: Tests / ${{ matrix.os }} / ${{ matrix.go }}