Skip to content

Commit 37ff1c0

Browse files
committed
Updated deps
1 parent 75f8f85 commit 37ff1c0

File tree

119 files changed

+858
-2292
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+858
-2292
lines changed

.github/workflows/android.yml

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

1717
jobs:
1818
binding:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
steps:
2121
- uses: actions/checkout@v3
2222
- uses: actions/setup-java@v3
@@ -30,7 +30,7 @@ jobs:
3030
ndk-version: r21d
3131
- uses: actions/setup-go@v3
3232
with:
33-
go-version: '^1.21'
33+
go-version: '^1.23'
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-13
19+
runs-on: macos-14
2020
steps:
2121
- uses: actions/checkout@v3
2222
- uses: actions/setup-go@v3
2323
with:
24-
go-version: '^1.21'
24+
go-version: '^1.23'
2525
- name: Build
2626
run: make binding_darwin
2727
- name: Compress

.github/workflows/flatbuffers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818

1919
jobs:
2020
build:
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-24.04
2222
strategy:
2323
matrix:
2424
language: [ dart, go, ts, java, kotlin, swift ]

.github/workflows/gomobile.yml

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

1717
jobs:
1818
android:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
steps:
2121
- uses: actions/checkout@v3
2222
- uses: actions/setup-java@v3
@@ -35,7 +35,7 @@ jobs:
3535
ndk-version: r21d
3636
- uses: actions/setup-go@v3
3737
with:
38-
go-version: '^1.21'
38+
go-version: '^1.23'
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-13
71+
runs-on: macos-14
7272
steps:
7373
- uses: actions/checkout@v3
7474
- uses: actions/setup-go@v3
7575
with:
76-
go-version: '^1.21'
76+
go-version: '^1.23'
7777
- name: Install Gomobile
7878
run: |
7979
go install golang.org/x/mobile/cmd/gomobile@latest

.github/workflows/ios.yml

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

1717
jobs:
1818
binding_arm7:
19-
runs-on: macos-13
19+
runs-on: macos-14
2020
steps:
2121
- uses: actions/checkout@v3
2222
- uses: actions/setup-go@v3
@@ -35,7 +35,7 @@ jobs:
3535
retention-days: 1
3636

3737
binding:
38-
runs-on: macos-13
38+
runs-on: macos-14
3939
needs: binding_arm7
4040
steps:
4141
- uses: actions/checkout@v3
@@ -45,9 +45,9 @@ jobs:
4545
path: output
4646
- uses: actions/setup-go@v3
4747
with:
48-
go-version: '^1.21'
48+
go-version: '^1.23'
4949
- name: Build Go
50-
run: ./go.sh 1.21.0 fastrsa
50+
run: ./go.sh 1.23.3 fastrsa
5151
- name: Build
5252
run: |
5353
export PATH="/tmp/go/bin:$PATH"
@@ -74,9 +74,9 @@ jobs:
7474
- uses: actions/checkout@v3
7575
- uses: actions/setup-go@v3
7676
with:
77-
go-version: '^1.21'
77+
go-version: '^1.23'
7878
- name: Build Go
79-
run: ./go.sh 1.21.0 fastrsa
79+
run: ./go.sh 1.23.3 fastrsa
8080
- name: Build
8181
run: |
8282
export PATH="/tmp/go/bin:$PATH"

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616

1717
jobs:
1818
binding:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
steps:
2121
- uses: actions/checkout@v3
2222
- uses: docker-practice/actions-setup-docker@master

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- uses: actions/checkout@v3
1414
with:

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
tests:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
strategy:
1212
fail-fast: false
1313
matrix:
@@ -28,7 +28,7 @@ jobs:
2828

2929
finish:
3030
needs: tests
31-
runs-on: ubuntu-22.04
31+
runs-on: ubuntu-24.04
3232
steps:
3333
- uses: shogo82148/actions-goveralls@v1
3434
with:

.github/workflows/wasm.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: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
steps:
2121
- uses: actions/checkout@v3
2222
- uses: actions/setup-go@v3
2323
with:
24-
go-version: '^1.21'
24+
go-version: '^1.23'
2525
- name: Install TinyGo
2626
run: |
2727
wget https://github.com/tinygo-org/tinygo/releases/download/v0.28.1/tinygo_0.28.1_amd64.deb

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616

1717
jobs:
1818
binding:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
steps:
2121
- uses: actions/checkout@v3
2222
- uses: docker-practice/actions-setup-docker@master

0 commit comments

Comments
 (0)