fix: use Go 1.25 in CI workflows
Some checks failed
Build and Release / Lint and Test (push) Successful in 23m20s
Build and Release / Build Binaries (amd64, windows) (push) Failing after 1m41s
Build and Release / Build Binaries (amd64, darwin) (push) Failing after 2m19s
Build and Release / Build Docker Image (push) Failing after 50s
Build and Release / Build Binaries (arm64, linux) (push) Failing after 2m5s
Build and Release / Build Binaries (amd64, linux) (push) Failing after 8m5s
Build and Release / Build Binaries (arm64, darwin) (push) Failing after 8m3s
Build and Release / Create Release (push) Has been skipped

Updated GO_VERSION from 1.23 to 1.25 in both build.yml and pr-checks.yml.
Reverted Makefile lint targets to use default settings since Go 1.25
supports GOEXPERIMENT=jsonv2.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
David H. Friedel Jr. 2026-01-09 16:43:06 -05:00
parent 734a15cee9
commit 5bb06851b8
3 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ on:
env: env:
GOPROXY: https://proxy.golang.org,direct GOPROXY: https://proxy.golang.org,direct
GO_VERSION: "1.23" GO_VERSION: "1.25"
NODE_VERSION: "22" NODE_VERSION: "22"
jobs: jobs:

View File

@ -8,7 +8,7 @@ on:
env: env:
GOPROXY: https://proxy.golang.org,direct GOPROXY: https://proxy.golang.org,direct
GO_VERSION: "1.23" GO_VERSION: "1.25"
NODE_VERSION: "22" NODE_VERSION: "22"
jobs: jobs:

View File

@ -377,11 +377,11 @@ lint-spell-fix: ## lint spelling and fix issues
.PHONY: lint-go .PHONY: lint-go
lint-go: ## lint go files lint-go: ## lint go files
GOEXPERIMENT= GOTOOLCHAIN=local $(GO) run $(GOLANGCI_LINT_PACKAGE) run $(GO) run $(GOLANGCI_LINT_PACKAGE) run
.PHONY: lint-go-fix .PHONY: lint-go-fix
lint-go-fix: ## lint go files and fix issues lint-go-fix: ## lint go files and fix issues
GOEXPERIMENT= GOTOOLCHAIN=local $(GO) run $(GOLANGCI_LINT_PACKAGE) run --fix $(GO) run $(GOLANGCI_LINT_PACKAGE) run --fix
# workaround step for the lint-go-windows CI task because 'go run' can not # workaround step for the lint-go-windows CI task because 'go run' can not
# have distinct GOOS/GOARCH for its build and run steps # have distinct GOOS/GOARCH for its build and run steps