Skip to content

Commit f2f594a

Browse files
committed
Upgrade to go 1.25.0 and enable greenteagc
1 parent 663ddb8 commit f2f594a

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v4
2222
with:
23-
go-version: "1.24.2"
23+
go-version: "1.25.0"
2424
- name: Run GoReleaser
2525
uses: goreleaser/goreleaser-action@v5
2626
with:
@@ -30,3 +30,4 @@ jobs:
3030
args: release --clean
3131
env:
3232
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
33+
GOEXPERIMENT: greenteagc

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: self-hosted
2424
strategy:
2525
matrix:
26-
go-version: ["1.24.2"]
26+
go-version: ["1.25.0"]
2727

2828
steps:
2929
- uses: actions/checkout@v3
@@ -40,7 +40,7 @@ jobs:
4040
TEST_PAT: ${{ secrets.TEST_PAT }}
4141
run: |
4242
export OPENRUN_HOME=`pwd`
43-
export GOAMD64=v3
43+
export GOEXPERIMENT=greenteagc
4444
rm -rf internal/server/appspecs && cd internal/server
4545
git clone --single-branch --depth 1 https://github.com/openrundev/appspecs.git
4646
rm -rf appspecs/.git

.github/workflows/test_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-22.04
2020
strategy:
2121
matrix:
22-
go-version: ["1.24.2"]
22+
go-version: ["1.25.0"]
2323

2424
steps:
2525
- uses: actions/checkout@v3
@@ -36,7 +36,7 @@ jobs:
3636
TEST_PAT: ${{ secrets.TEST_PAT }}
3737
run: |
3838
export OPENRUN_HOME=`pwd`
39-
export GOAMD64=v3
39+
export GOEXPERIMENT=greenteagc
4040
rm -rf internal/server/appspecs && cd internal/server
4141
git clone --single-branch --depth 1 https://github.com/openrundev/appspecs.git
4242
rm -rf appspecs/.git

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
module github.com/openrundev/openrun
55

6-
go 1.24.2
6+
go 1.25.0
77

88
require (
99
github.com/BurntSushi/toml v1.4.0

0 commit comments

Comments
 (0)