Skip to content

Commit 62f01d2

Browse files
committed
Upgrade to go 1.18
1 parent 90bdac8 commit 62f01d2

File tree

3 files changed

+14
-743
lines changed

3 files changed

+14
-743
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ before_install:
66
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
77

88
go:
9-
- 1.13.x
9+
- 1.18.x
1010
- tip

go.mod

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,28 @@
11
module github.com/kost/tty2web
22

3-
go 1.13
3+
go 1.18
44

55
require (
66
github.com/NYTimes/gziphandler v1.1.1
77
github.com/creack/pty v1.1.18
88
github.com/elazarl/go-bindata-assetfs v1.0.1
99
github.com/fatih/structs v1.1.0
10-
github.com/google/go-github/v39 v39.2.0 // indirect
1110
github.com/gorilla/websocket v1.5.0
12-
github.com/hashicorp/errwrap v1.1.0 // indirect
13-
github.com/hashicorp/go-multierror v1.1.1 // indirect
1411
github.com/hashicorp/yamux v0.1.1
15-
github.com/jteeuwen/go-bindata v3.0.7+incompatible // indirect
1612
github.com/kost/go-ntlmssp v0.0.0-20190601005913-a22bdd33b2a4
1713
github.com/kost/gosc v0.0.0-20220906085844-de84a24022bd
1814
github.com/kost/httpexecute v0.0.0-20211119174050-f41d120e9db6
1915
github.com/kost/regeorgo v0.0.0-20211119151427-d6c70e76b00e
20-
github.com/kr/pretty v0.1.0 // indirect
21-
github.com/mitchellh/gox v1.0.1 // indirect
2216
github.com/pkg/errors v0.9.1
23-
github.com/tcnksm/ghr v0.16.0 // indirect
2417
github.com/urfave/cli/v2 v2.23.5
2518
github.com/yudai/hcl v0.0.0-20151013225006-5fa2393b3552
26-
golang.org/x/crypto v0.2.0 // indirect
27-
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
28-
gopkg.in/yaml.v2 v2.4.0 // indirect
19+
)
20+
21+
require (
22+
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
23+
github.com/hashicorp/errwrap v1.1.0 // indirect
24+
github.com/hashicorp/go-multierror v1.1.1 // indirect
25+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
26+
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
27+
golang.org/x/crypto v0.3.0 // indirect
2928
)

0 commit comments

Comments
 (0)