Skip to content

Commit

Permalink
chore: update go from 1.20 to 1.22 on app build ci/cd config file
Browse files Browse the repository at this point in the history
  • Loading branch information
sakul-budhathoki committed Oct 15, 2024
1 parent fd06c85 commit 14b6a8a
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 23 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/mobile-build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- uses: actions/setup-go@v3
with:
go-version: "1.20"
go-version: "1.22"

- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -91,6 +91,8 @@ jobs:
- name: EAS Submit Android aab
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
run: eas submit --platform=android --path=${{ env.AAB_FILE }} --profile=production
# TODO: remove once Google Play account verification issue resolved
continue-on-error: true

- name: Upload aab
uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mobile-build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-go@v3
with:
go-version: "1.20"
go-version: "1.22"

- name: Select xcode
run: sudo xcode-select -s /Applications/Xcode_15.2.app
Expand Down
17 changes: 9 additions & 8 deletions weshd/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module weshd

go 1.20
go 1.22.0

require (
berty.tech/weshnet v1.14.0
Expand Down Expand Up @@ -261,15 +261,16 @@ require (
go.uber.org/fx v1.19.2 // indirect
go.uber.org/multierr v1.11.0 // indirect
go4.org v0.0.0-20200411211856-f5505b9728dd // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/exp v0.0.0-20230725012225-302865e7556b // indirect
golang.org/x/mod v0.16.0 // indirect
golang.org/x/net v0.22.0 // indirect
golang.org/x/mobile v0.0.0-20241004191011-08a83c5af9f8 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/oauth2 v0.14.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.19.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.19.0 // indirect
golang.org/x/tools v0.26.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect
Expand Down
Loading

0 comments on commit 14b6a8a

Please sign in to comment.