From 9e23a838cdbe38c54fec48337952d5affc3f004a Mon Sep 17 00:00:00 2001 From: andev0x Date: Wed, 14 Jan 2026 00:56:29 +0700 Subject: [PATCH] fix: update CI workflow to use Go 1.24 - Update go-version matrix to test with Go 1.23 and 1.24 - Remove Go 1.21 and 1.22 from matrix as dependencies require Go 1.24+ - Fixes GitHub Actions error: 'invalid go version 1.24.0: must match format 1.23' --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7079e06..5d7a8a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [1.18, 1.21, 1.22, 1.24] + go-version: ['1.23', '1.24'] steps: - uses: actions/checkout@v4 - name: Set up Go ${{ matrix.go-version }}