Skip to content

Commit

Permalink
chore: updated to go v1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jerson committed Aug 9, 2023
1 parent 717bfb8 commit a7c931c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
ndk-version: r21d
- uses: actions/setup-go@v3
with:
go-version: '^1.20'
go-version: '^1.21'
- name: Build
run: make binding_android
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.20'
go-version: '^1.21'
- name: Build
run: make binding_darwin
- name: Compress
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gomobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
ndk-version: r21d
- uses: actions/setup-go@v3
with:
go-version: '^1.20'
go-version: '^1.21'
- name: Install Gomobile
run: |
go install golang.org/x/mobile/cmd/gomobile@latest
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.20'
go-version: '^1.21'
- name: Install Gomobile
run: |
go install golang.org/x/mobile/cmd/gomobile@latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.20'
go-version: '^1.21'
- name: Build Go
run: ./go.sh 1.14.15 openpgp
- name: Build
Expand All @@ -45,9 +45,9 @@ jobs:
path: output
- uses: actions/setup-go@v3
with:
go-version: '^1.20'
go-version: '^1.21'
- name: Build Go
run: ./go.sh 1.20.7 openpgp
run: ./go.sh 1.21.0 openpgp
- name: Build
run: |
export PATH="/tmp/go/bin:$PATH"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.20'
go-version: '^1.21'
- name: Install TinyGo
run: |
wget https://github.com/tinygo-org/tinygo/releases/download/v0.28.1/tinygo_0.28.1_amd64.deb
Expand Down
2 changes: 1 addition & 1 deletion cross_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

GOOS=${GOOS:-linux}
GOARCH=${GOARCH:-amd64}
GOVERSION=${GOVERSION:-1.20.6}
GOVERSION=${GOVERSION:-1.20.7}
TAG=${TAG:-main}
CMD=${CMD:-make build}
ARGS=${ARGS:-}
Expand Down

0 comments on commit a7c931c

Please sign in to comment.