go.mod,.github: Build with go 1.25.1.

1.25.2 introduces stricter net/url.Parse semantics on bracketed hostname components, which breaks the (non-standard) URLs that Dolt uses for AWS remotes. We will build with the previous version of Go until we can fix this.
This commit is contained in:
Aaron Son
2025-10-14 10:53:52 +02:00
parent 6909b2a45f
commit eb6b65484c
2 changed files with 3 additions and 3 deletions

View File

@@ -85,9 +85,9 @@ jobs:
run: |
latest=$(git rev-parse HEAD)
echo "commitish=$latest" >> $GITHUB_OUTPUT
GO_BUILD_VERSION=1.25 go/utils/publishrelease/buildpgobinaries.sh
GO_BUILD_VERSION=1.25.1 go/utils/publishrelease/buildpgobinaries.sh
env:
GO_BUILD_VERSION: "1.25"
GO_BUILD_VERSION: "1.25.1"
PROFILE: ${{ format('{0}/dolt-cpu-profile.pprof', github.workspace) }}
- name: Create Release
id: create_release

View File

@@ -199,4 +199,4 @@ require (
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
)
go 1.25.0
go 1.25.1