Skip to content

Commit 756187f

Browse files
authored
Use gopkg.in/yaml.v3 in ngrok tunnel provider (#1366)
Signed-off-by: Juan Antonio Osorio <[email protected]>
1 parent e1eccad commit 756187f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ require (
4444
golang.org/x/oauth2 v0.30.0
4545
golang.org/x/sync v0.16.0
4646
golang.org/x/term v0.34.0
47-
gopkg.in/yaml.v2 v2.4.0
4847
gopkg.in/yaml.v3 v3.0.1
4948
gotest.tools v2.2.0+incompatible
5049
k8s.io/api v0.33.3
@@ -255,6 +254,7 @@ require (
255254
google.golang.org/protobuf v1.36.6 // indirect
256255
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
257256
gopkg.in/inf.v0 v0.9.1 // indirect
257+
gopkg.in/yaml.v2 v2.4.0 // indirect
258258
gotest.tools/v3 v3.5.2 // indirect
259259
k8s.io/apiextensions-apiserver v0.33.0 // indirect
260260
k8s.io/klog/v2 v2.130.1 // indirect

pkg/transport/tunnel/ngrok/tunnel_provider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010

1111
"golang.ngrok.com/ngrok/v2"
12-
"gopkg.in/yaml.v2"
12+
"gopkg.in/yaml.v3"
1313

1414
"github.com/stacklok/toolhive/pkg/logger"
1515
)

0 commit comments

Comments
 (0)