Skip to content

Commit 74991c9

Browse files
committed
updated to go v1.24
1 parent 3fc21f0 commit 74991c9

File tree

7 files changed

+17
-15
lines changed

7 files changed

+17
-15
lines changed

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
ndk-version: r28
3131
- uses: actions/setup-go@v5
3232
with:
33-
go-version: '^1.23'
33+
go-version: '^1.24'
3434
- name: Build
3535
run: make binding_android
3636
env:

.github/workflows/darwin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ env:
1616

1717
jobs:
1818
binding:
19-
runs-on: macos-14
19+
runs-on: macos-15
2020
steps:
2121
- uses: actions/checkout@v4
2222
- uses: actions/setup-go@v5
2323
with:
24-
go-version: '^1.23'
24+
go-version: '^1.24'
2525
- name: Build
2626
run: make binding_darwin
2727
- name: Compress

.github/workflows/gomobile.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
ndk-version: r21d
3636
- uses: actions/setup-go@v5
3737
with:
38-
go-version: '^1.23'
38+
go-version: '^1.24'
3939
- name: Install Gomobile
4040
run: |
4141
go install golang.org/x/mobile/cmd/gomobile@latest
@@ -68,12 +68,12 @@ jobs:
6868
path: output.tar.gz
6969

7070
ios:
71-
runs-on: macos-14
71+
runs-on: macos-15
7272
steps:
7373
- uses: actions/checkout@v4
7474
- uses: actions/setup-go@v5
7575
with:
76-
go-version: '^1.23'
76+
go-version: '^1.24'
7777
- name: Install Gomobile
7878
run: |
7979
go install golang.org/x/mobile/cmd/gomobile@latest

.github/workflows/ios.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@ env:
1616

1717
jobs:
1818
binding:
19-
runs-on: macos-14
19+
runs-on: macos-15
2020
steps:
2121
- uses: actions/checkout@v4
2222
- uses: actions/setup-go@v5
2323
with:
24-
go-version: '^1.23'
24+
go-version: '^1.24'
2525
- name: Build Go
26-
run: ./go.sh 1.23.3 fastrsa
26+
# this should match with go.mod version
27+
run: ./go.sh 1.24.1 fastrsa
2728
- name: Build
2829
run: |
2930
export PATH="/tmp/go/bin:$PATH"
@@ -45,14 +46,15 @@ jobs:
4546
path: output.tar.gz
4647

4748
xcframework:
48-
runs-on: macos-14
49+
runs-on: macos-15
4950
steps:
5051
- uses: actions/checkout@v4
5152
- uses: actions/setup-go@v5
5253
with:
53-
go-version: '^1.23'
54+
go-version: '^1.24'
5455
- name: Build Go
55-
run: ./go.sh 1.23.3 fastrsa
56+
# this should match with go.mod version
57+
run: ./go.sh 1.24.1 fastrsa
5658
- name: Build
5759
run: |
5860
export PATH="/tmp/go/bin:$PATH"

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
go: [ '1.23']
14+
go: [ '1.24']
1515
name: Using Go ${{ matrix.go }}
1616
steps:
1717
- uses: actions/checkout@v4

.github/workflows/wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v4
2222
- uses: actions/setup-go@v5
2323
with:
24-
go-version: '^1.23'
24+
go-version: '^1.24'
2525
- name: Install TinyGo
2626
run: |
2727
wget https://github.com/tinygo-org/tinygo/releases/download/v0.34.0/tinygo_0.34.0_amd64.deb

cross_build.sh

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

33
GOOS=${GOOS:-linux}
44
GOARCH=${GOARCH:-amd64}
5-
GOVERSION=${GOVERSION:-1.23.3}
5+
GOVERSION=${GOVERSION:-1.23.7}
66
TAG=${TAG:-main}
77
CMD=${CMD:-make build}
88
ARGS=${ARGS:-}

0 commit comments

Comments
 (0)