Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(go): use go 1.17 #728

Merged
merged 4 commits into from
Jun 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

### To be Released

* chore(go): chore(go): use go 1.17 [#728](https://github.com/Scalingo/cli/pull/728)
* feat(app): Region detection from Git remote [#724](https://github.com/Scalingo/cli/pull/724)
* feat(app): add a flag --force to destroy an app without interactive confirmation [#721](https://github.com/Scalingo/cli/pull/721)
* build(deps): bump github.com/briandowns/spinner from 1.18.0 to 1.18.1
Expand Down
39 changes: 34 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
module github.com/Scalingo/cli

go 1.16
go 1.17

require (
github.com/ScaleFT/sshkeys v0.0.0-20200327173127-6142f742bca5
github.com/Scalingo/go-scalingo/v4 v4.15.1
github.com/Scalingo/go-utils/errors v1.1.0
github.com/Scalingo/go-utils/retry v1.1.0
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/andrew-d/go-termutil v0.0.0-20150726205930-009166a695a2
github.com/briandowns/spinner v1.18.1
github.com/cheggaaa/pb/v3 v3.0.8
Expand All @@ -17,8 +16,6 @@ require (
github.com/gosuri/uilive v0.0.4
github.com/heroku/hk v0.0.0-20160226172041-9c27ee3bfe9f
github.com/kelseyhightower/envconfig v1.4.0
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/olekukonko/tablewriter v0.0.5
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
github.com/pkg/errors v0.9.1
Expand All @@ -27,8 +24,40 @@ require (
github.com/urfave/cli v1.22.9
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b
golang.org/x/net v0.0.0-20211104170005-ce137452f963
golang.org/x/sys v0.0.0-20220111092808-5a964db01320 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
gopkg.in/AlecAivazis/survey.v1 v1.8.8
gopkg.in/errgo.v1 v1.0.1
)

require (
github.com/Microsoft/go-winio v0.4.16 // indirect
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/acomagu/bufpipe v1.0.3 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dchest/bcrypt_pbkdf v0.0.0-20150205184540-83f37f9c154a // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/go-git/gcfg v1.5.0 // indirect
github.com/go-git/go-billy/v5 v5.3.1 // indirect
github.com/golang-jwt/jwt/v4 v4.1.0 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/imdario/mergo v0.3.12 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/sergi/go-diff v1.1.0 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/xanzy/ssh-agent v0.3.0 // indirect
golang.org/x/sys v0.0.0-20220111092808-5a964db01320 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
)
9 changes: 0 additions & 9 deletions vendor/github.com/Microsoft/go-winio/go.mod

This file was deleted.

16 changes: 0 additions & 16 deletions vendor/github.com/Microsoft/go-winio/go.sum

This file was deleted.

10 changes: 0 additions & 10 deletions vendor/github.com/ScaleFT/sshkeys/go.mod

This file was deleted.

23 changes: 0 additions & 23 deletions vendor/github.com/ScaleFT/sshkeys/go.sum

This file was deleted.

17 changes: 0 additions & 17 deletions vendor/github.com/Scalingo/go-scalingo/v4/go.mod

This file was deleted.

50 changes: 0 additions & 50 deletions vendor/github.com/Scalingo/go-scalingo/v4/go.sum

This file was deleted.

11 changes: 0 additions & 11 deletions vendor/github.com/Scalingo/go-utils/errors/go.mod

This file was deleted.

26 changes: 0 additions & 26 deletions vendor/github.com/Scalingo/go-utils/errors/go.sum

This file was deleted.

9 changes: 0 additions & 9 deletions vendor/github.com/Scalingo/go-utils/retry/go.mod

This file was deleted.

13 changes: 0 additions & 13 deletions vendor/github.com/Scalingo/go-utils/retry/go.sum

This file was deleted.

3 changes: 0 additions & 3 deletions vendor/github.com/VividCortex/ewma/go.mod

This file was deleted.

5 changes: 0 additions & 5 deletions vendor/github.com/acomagu/bufpipe/go.mod

This file was deleted.

2 changes: 0 additions & 2 deletions vendor/github.com/acomagu/bufpipe/go.sum

This file was deleted.

9 changes: 0 additions & 9 deletions vendor/github.com/briandowns/spinner/go.mod

This file was deleted.

8 changes: 0 additions & 8 deletions vendor/github.com/briandowns/spinner/go.sum

This file was deleted.

13 changes: 0 additions & 13 deletions vendor/github.com/cheggaaa/pb/v3/go.mod

This file was deleted.

17 changes: 0 additions & 17 deletions vendor/github.com/cheggaaa/pb/v3/go.sum

This file was deleted.

Loading