Skip to content

Commit 5edd606

Browse files
committed
updated packages
1 parent 1376a2e commit 5edd606

File tree

7 files changed

+1497
-51
lines changed

7 files changed

+1497
-51
lines changed

.github/workflows/build-android.yml

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

1212
steps:
1313
- name: Check out code
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Set up Git LFS
1717
run: |

.github/workflows/build-ios.yml

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

1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
- name: Set up Go
2020
uses: actions/setup-go@v5
2121
with:

.github/workflows/go-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
name: All
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
with:
1111
submodules: recursive
1212
- uses: actions/setup-go@v5

.github/workflows/go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- name: Checkout
9-
uses: actions/checkout@v3
9+
uses: actions/checkout@v4
1010

1111
- name: Set up Go
1212
uses: actions/setup-go@v5

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ prepare-gomobile:
2020

2121
build-fula-xcframework:
2222
gomobile init &&\
23-
gomobile bind -v -o Fula.xcframework -target=ios github.com/functionland/go-fula/mobile
23+
gomobile bind -v -o Fula.xcframework -target=ios -ldflags="-checklinkname=0" github.com/functionland/go-fula/mobile
2424

2525
build-bundle:
2626
mkdir -p build &&\

go.mod

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,14 @@ require (
4444
)
4545

4646
require (
47-
github.com/Microsoft/go-winio v0.6.1 // indirect
47+
github.com/Microsoft/go-winio v0.6.2 // indirect
4848
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
4949
github.com/docker/go-connections v0.4.0 // indirect
5050
github.com/moby/term v0.5.0 // indirect
5151
github.com/morikuni/aec v1.0.0 // indirect
5252
github.com/opencontainers/go-digest v1.0.0 // indirect
5353
github.com/opencontainers/image-spec v1.0.2 // indirect
5454
golang.org/x/sys v0.40.0 // indirect
55-
gotest.tools/v3 v3.4.0 // indirect
5655
)
5756

5857
require (
@@ -78,7 +77,7 @@ require (
7877
github.com/cespare/xxhash/v2 v2.3.0 // indirect
7978
github.com/cheggaaa/pb v1.0.29 // indirect
8079
github.com/cockroachdb/crlib v0.0.0-20241112164430-1264a2edc35b // indirect
81-
github.com/cockroachdb/errors v1.11.3 // indirect
80+
github.com/cockroachdb/errors v1.12.0 // indirect
8281
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
8382
github.com/cockroachdb/pebble/v2 v2.1.4 // indirect
8483
github.com/cockroachdb/redact v1.1.5 // indirect
@@ -299,3 +298,5 @@ require (
299298
lukechampine.com/blake3 v1.4.1 // indirect
300299
rsc.io/qr v0.2.0 // indirect
301300
)
301+
302+
replace google.golang.org/genproto => google.golang.org/genproto v0.0.0-20250825161204-c5933d9347a5

go.sum

Lines changed: 1488 additions & 43 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)