From abcef80d3956ced171ece608020bc391812c05ad Mon Sep 17 00:00:00 2001 From: yxxhero Date: Wed, 11 Mar 2026 09:30:32 +0800 Subject: [PATCH] fix(ci): pin semver to v2.12.0 for Go 1.25 compatibility semver@latest requires Go 1.26.1 but the project uses Go 1.25.4. Pinning to v2.12.0 which is compatible with Go 1.25. Signed-off-by: yxxhero --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index eef441da..448fecb9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -147,7 +147,7 @@ jobs: with: name: built-binaries-${{ github.run_id }} - name: install semver - run: go install github.com/ffurrer2/semver/v2/cmd/semver@latest + run: go install github.com/ffurrer2/semver/v2/cmd/semver@v2.12.0 - name: Extract tar to get built binaries run: tar -xvf built-binaries.tar - name: Display built binaries