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
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:
parent
734a15cee9
commit
5bb06851b8
@ -13,7 +13,7 @@ on:
|
||||
|
||||
env:
|
||||
GOPROXY: https://proxy.golang.org,direct
|
||||
GO_VERSION: "1.23"
|
||||
GO_VERSION: "1.25"
|
||||
NODE_VERSION: "22"
|
||||
|
||||
jobs:
|
||||
|
||||
@ -8,7 +8,7 @@ on:
|
||||
|
||||
env:
|
||||
GOPROXY: https://proxy.golang.org,direct
|
||||
GO_VERSION: "1.23"
|
||||
GO_VERSION: "1.25"
|
||||
NODE_VERSION: "22"
|
||||
|
||||
jobs:
|
||||
|
||||
4
Makefile
4
Makefile
@ -377,11 +377,11 @@ lint-spell-fix: ## lint spelling and fix issues
|
||||
|
||||
.PHONY: lint-go
|
||||
lint-go: ## lint go files
|
||||
GOEXPERIMENT= GOTOOLCHAIN=local $(GO) run $(GOLANGCI_LINT_PACKAGE) run
|
||||
$(GO) run $(GOLANGCI_LINT_PACKAGE) run
|
||||
|
||||
.PHONY: lint-go-fix
|
||||
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
|
||||
# have distinct GOOS/GOARCH for its build and run steps
|
||||
|
||||
Loading…
Reference in New Issue
Block a user