Skip to content

Commit d3bc632

Browse files
authored
chore(build): update Go version to 1.25.0 across workflows and build scripts (#1290)
build: update Go version to 1.25.0 across workflows and build scripts fixes #1286
1 parent cbbb5ad commit d3bc632

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/beta_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- name: Setup Go
8888
uses: actions/setup-go@v5
8989
with:
90-
go-version: "1.24.5"
90+
go-version: "1.25.0"
9191

9292
- name: Setup web
9393
run: bash build.sh dev web

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup Go
3434
uses: actions/setup-go@v5
3535
with:
36-
go-version: "1.24.5"
36+
go-version: "1.25.0"
3737

3838
- name: Setup web
3939
run: bash build.sh dev web

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Setup Go
4747
uses: actions/setup-go@v5
4848
with:
49-
go-version: '1.24'
49+
go-version: '1.25.0'
5050

5151
- name: Checkout
5252
uses: actions/checkout@v4

.github/workflows/release_docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
- uses: actions/setup-go@v5
4949
with:
50-
go-version: 'stable'
50+
go-version: '1.25.0'
5151

5252
- name: Cache Musl
5353
id: cache-musl
@@ -87,7 +87,7 @@ jobs:
8787

8888
- uses: actions/setup-go@v5
8989
with:
90-
go-version: 'stable'
90+
go-version: '1.25.0'
9191

9292
- name: Cache Musl
9393
id: cache-musl

.github/workflows/test_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- uses: actions/setup-go@v5
3838
with:
39-
go-version: 'stable'
39+
go-version: '1.25.0'
4040

4141
- name: Cache Musl
4242
id: cache-musl

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ BuildRelease() {
236236
BuildLoongGLIBC() {
237237
local target_abi="$2"
238238
local output_file="$1"
239-
local oldWorldGoVersion="1.24.3"
239+
local oldWorldGoVersion="1.25.0"
240240

241241
if [ "$target_abi" = "abi1.0" ]; then
242242
echo building for linux-loong64-abi1.0
@@ -254,13 +254,13 @@ BuildLoongGLIBC() {
254254

255255
# Download and setup patched Go compiler for old-world
256256
if ! curl -fsSL --retry 3 -H "Authorization: Bearer $GITHUB_TOKEN" \
257-
"https://github.com/loong64/loong64-abi1.0-toolchains/releases/download/20250722/go${oldWorldGoVersion}.linux-amd64.tar.gz" \
257+
"https://github.com/loong64/loong64-abi1.0-toolchains/releases/download/20250821/go${oldWorldGoVersion}.linux-amd64.tar.gz" \
258258
-o go-loong64-abi1.0.tar.gz; then
259259
echo "Error: Failed to download patched Go compiler for old-world ABI1.0"
260260
if [ -n "$GITHUB_TOKEN" ]; then
261261
echo "Error output from curl:"
262262
curl -fsSL --retry 3 -H "Authorization: Bearer $GITHUB_TOKEN" \
263-
"https://github.com/loong64/loong64-abi1.0-toolchains/releases/download/20250722/go${oldWorldGoVersion}.linux-amd64.tar.gz" \
263+
"https://github.com/loong64/loong64-abi1.0-toolchains/releases/download/20250821/go${oldWorldGoVersion}.linux-amd64.tar.gz" \
264264
-o go-loong64-abi1.0.tar.gz || true
265265
fi
266266
return 1

0 commit comments

Comments
 (0)