Skip to content

Commit 18dbd20

Browse files
authoredMay 31, 2024
Merge pull request #4 from plotly/chore/upgrade-go-version
chore: upgrade go version
2 parents 8524cb5 + b1327b8 commit 18dbd20

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
execd
22
build
33
release
4+
5+
.idea

‎cmd/sshfront/sshfront.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"flag"
55
"fmt"
6-
. "github.com/gliderlabs/sshfront/internal"
6+
. "github.com/plotly/sshfront/internal"
77
"log"
88
"net"
99
"os"

‎go.mod

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
module github.com/plotly/sshfront
22

3-
go 1.21
3+
go 1.22.3
44

55
require (
6-
github.com/creack/pty v1.1.21
76
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568
7+
github.com/kr/pty v1.1.8
88
golang.org/x/crypto v0.21.0
99
)
1010

11-
require golang.org/x/sys v0.18.0 // indirect
11+
require (
12+
github.com/creack/pty v1.1.21 // indirect
13+
golang.org/x/sys v0.18.0 // indirect
14+
)

‎go.sum

+3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1+
github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
12
github.com/creack/pty v1.1.21 h1:1/QdRyBaHHJP61QkWMXlOIBfsgdDeeKfK8SYVUWJKf0=
23
github.com/creack/pty v1.1.21/go.mod h1:MOBLtS5ELjhRRrroQr9kyvTxUAFNvYEK993ew/Vr4O4=
34
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 h1:BHsljHzVlRcyQhjrss6TZTdY2VfCqZPbv5k3iBFa2ZQ=
45
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc=
6+
github.com/kr/pty v1.1.8 h1:AkaSdXYQOWeaO3neb8EM634ahkXXe3jYbVh/F9lq+GI=
7+
github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw=
58
golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA=
69
golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs=
710
golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=

0 commit comments

Comments
 (0)
Please sign in to comment.