Skip to content

Commit a4ceba9

Browse files
authored
Merge pull request #325 from kaleido-io/upgrade-go
Upgrade to Go 1.22
2 parents a459b82 + 47457dd commit a4ceba9

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v4
2222
with:
23-
go-version: "1.21"
23+
go-version: "1.22"
2424
- name: Compile FireFly CLI
2525
run: make

.github/workflows/e2e.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
- name: Set up Go
9292
uses: actions/setup-go@v4
9393
with:
94-
go-version: "1.21"
94+
go-version: "1.22"
9595

9696
- name: Compile FireFly CLI
9797
working-directory: firefly-cli

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v4
2121
with:
22-
go-version: "1.21"
22+
go-version: "1.22"
2323
- name: Run GoReleaser
2424
uses: goreleaser/goreleaser-action@v4
2525
with:

go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616

1717
module github.com/hyperledger/firefly-cli
1818

19-
go 1.21
19+
go 1.22
2020

21-
toolchain go1.21.0
21+
toolchain go1.22.0
2222

2323
require (
2424
blockwatch.cc/tzgo v1.17.4
2525
github.com/briandowns/spinner v1.23.0
2626
github.com/btcsuite/btcd/btcec/v2 v2.3.2
2727
github.com/google/go-containerregistry v0.17.0
28-
github.com/hyperledger/firefly-common v1.4.2
29-
github.com/hyperledger/firefly-signer v1.1.11
28+
github.com/hyperledger/firefly-common v1.4.10
29+
github.com/hyperledger/firefly-signer v1.1.15
3030
github.com/jarcoal/httpmock v1.3.1
3131
github.com/mattn/go-isatty v0.0.20
3232
github.com/miracl/conflate v1.3.2

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ github.com/googleapis/gax-go/v2 v2.12.0 h1:A+gCJKdRfqXkr+BIRGtZLibNXf0m1f9E4HG56
118118
github.com/googleapis/gax-go/v2 v2.12.0/go.mod h1:y+aIqrI5eb1YGMVJfuV3185Ts/D7qKpsEkdD5+I6QGU=
119119
github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
120120
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
121-
github.com/hyperledger/firefly-common v1.4.2 h1:sBbiTFWDu1qCnXFA6JobasJl4AXphCAUZU/R4nyWPdE=
122-
github.com/hyperledger/firefly-common v1.4.2/go.mod h1:jkErZdQmC9fsAJZQO427tURdwB9iiW+NMUZSqS3eBIE=
123-
github.com/hyperledger/firefly-signer v1.1.11 h1:76t4ZrbveilfYLY87sAb7xqFJqhXZ8BLiH2BhE5be6I=
124-
github.com/hyperledger/firefly-signer v1.1.11/go.mod h1:Ae1WDQAV6JU/sMYO+HtoWXuw6agdnRZPNZ/fnigwVg4=
121+
github.com/hyperledger/firefly-common v1.4.10 h1:NgUYorxZF3tNkL7bBqe3PlwA42pPAYlj0wStnUsjN9Y=
122+
github.com/hyperledger/firefly-common v1.4.10/go.mod h1:E7w/RxNtVnX52WXLQW9f2xVAgZnW70voZeE9sZrx/q0=
123+
github.com/hyperledger/firefly-signer v1.1.15 h1:oJXrX1ziDIxzSbRX+risVEmprx3McD1yi0S1S5La4zc=
124+
github.com/hyperledger/firefly-signer v1.1.15/go.mod h1:E/TO0Koi4BqSr8hRhKJVTxiynwX/EQYjqqKrlnsQK7o=
125125
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
126126
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
127127
github.com/jarcoal/httpmock v1.3.1 h1:iUx3whfZWVf3jT01hQTO/Eo5sAYtB2/rqaUuOtpInww=

0 commit comments

Comments
 (0)