Skip to content

Commit a7bbd1e

Browse files
author
Gregor Gololicic
committed
Merge remote-tracking branch 'origin/bugfix/dev-wallet' into bugfix/dev-wallet
2 parents 506147e + c0569c7 commit a7bbd1e

File tree

4 files changed

+63
-152
lines changed

4 files changed

+63
-152
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
continue-on-error: true
1414
uses: snyk/actions/golang@master
1515
with:
16-
go-version: '1.16.2'
16+
go-version: '1.17'
1717
env:
1818
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
1919
build:
@@ -24,7 +24,7 @@ jobs:
2424
fetch-depth: 0
2525
- uses: actions/setup-go@v1
2626
with:
27-
go-version: '1.16.2'
27+
go-version: '1.17'
2828
- name: Build Binaries
2929
run: make versioned-binaries
3030
- name: Uploading Binaries

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 0
1818
- uses: actions/setup-go@v1
1919
with:
20-
go-version: '1.16.2'
20+
go-version: '1.17'
2121
- uses: actions/cache@v1
2222
with:
2323
path: ~/go/pkg/mod

go.mod

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
module github.com/onflow/flow-cli
22

3-
go 1.13
3+
go 1.16
44

55
require (
6-
github.com/a8m/envsubst v1.2.0
7-
github.com/getsentry/sentry-go v0.12.0
6+
github.com/a8m/envsubst v1.3.0
7+
github.com/getsentry/sentry-go v0.13.0
88
github.com/go-git/go-git/v5 v5.4.2
99
github.com/gosuri/uilive v0.0.4
1010
github.com/joho/godotenv v1.4.0
1111
github.com/manifoldco/promptui v0.9.0
1212
github.com/onflow/cadence v0.23.0
1313
github.com/onflow/cadence/languageserver v0.18.3-0.20220202133308-207188a51831
1414
github.com/onflow/fcl-dev-wallet v0.4.2
15-
github.com/onflow/flow-core-contracts/lib/go/templates v0.10.1
15+
github.com/onflow/flow-core-contracts/lib/go/templates v0.11.0
1616
github.com/onflow/flow-emulator v0.30.0
1717
github.com/onflow/flow-go v0.23.2-0.20220304145234-bf10d55c40fa
1818
github.com/onflow/flow-go-sdk v0.24.0
1919
github.com/psiemens/sconfig v0.1.0
20-
github.com/spf13/afero v1.8.0
21-
github.com/spf13/cobra v1.3.0
22-
github.com/stretchr/testify v1.7.1-0.20210824115523-ab6dc3262822
23-
github.com/thoas/go-funk v0.7.0
24-
gonum.org/v1/gonum v0.9.3
25-
google.golang.org/grpc v1.44.0
20+
github.com/spf13/afero v1.8.2
21+
github.com/spf13/cobra v1.4.0
22+
github.com/stretchr/testify v1.7.1
23+
github.com/thoas/go-funk v0.9.2
24+
gonum.org/v1/gonum v0.11.0
25+
google.golang.org/grpc v1.45.0
2626
)

0 commit comments

Comments
 (0)