Skip to content

Commit b5e531e

Browse files
Update module github.com/urfave/cli to v3
1 parent 0931f54 commit b5e531e

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

cmd/rancher-machine/machine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
"github.com/rancher/machine/libmachine/drivers/plugin/localbinary"
3030
"github.com/rancher/machine/libmachine/log"
3131
"github.com/rancher/machine/version"
32-
"github.com/urfave/cli"
32+
"github.com/urfave/cli/v3"
3333
)
3434

3535
var AppHelpTemplate = `Usage: {{.Name}} {{if .Flags}}[OPTIONS] {{end}}COMMAND [arg...]

commands/commands.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/rancher/machine/libmachine/mcnutils"
1919
"github.com/rancher/machine/libmachine/persist"
2020
"github.com/rancher/machine/libmachine/ssh"
21-
"github.com/urfave/cli"
21+
"github.com/urfave/cli/v3"
2222
)
2323

2424
const (

commands/commands_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/rancher/machine/libmachine/provision"
1717
"github.com/rancher/machine/libmachine/state"
1818
"github.com/stretchr/testify/assert"
19-
"github.com/urfave/cli"
19+
"github.com/urfave/cli/v3"
2020
)
2121

2222
func TestGetFlagValue(t *testing.T) {

commands/commandstest/fake_command_line.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package commandstest
22

33
import (
4-
"github.com/urfave/cli"
4+
"github.com/urfave/cli/v3"
55
)
66

77
type FakeFlagger struct {

commands/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/rancher/machine/libmachine/mcnerror"
2727
"github.com/rancher/machine/libmachine/mcnflag"
2828
"github.com/rancher/machine/libmachine/swarm"
29-
"github.com/urfave/cli"
29+
"github.com/urfave/cli/v3"
3030
"gopkg.in/yaml.v3"
3131
)
3232

commands/flag_sort.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package commands
22

3-
import "github.com/urfave/cli"
3+
import "github.com/urfave/cli/v3"
44

55
type ByFlagName []cli.Flag
66

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ require (
2525
github.com/rancher/wrangler/v3 v3.7.0
2626
github.com/skarademir/naturalsort v0.0.0-20150715044055-69a5d87bef62
2727
github.com/stretchr/testify v1.11.1
28-
github.com/urfave/cli v1.22.17
28+
github.com/urfave/cli/v3 v3.10.0
2929
github.com/vmware/govcloudair v0.0.2
3030
github.com/vmware/govmomi v0.42.0
3131
golang.org/x/crypto v0.50.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,8 +258,8 @@ github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu
258258
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
259259
github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8=
260260
github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU=
261-
github.com/urfave/cli v1.11.1-0.20151120215642-0302d3914d2a h1:i6gus1o4iDkjlzGJCIvhbKmyk6zeIhIqgdSOcJi493g=
262-
github.com/urfave/cli v1.11.1-0.20151120215642-0302d3914d2a/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA=
261+
github.com/urfave/cli/v3 v3.10.0 h1:0aU8yOObVDMkM13Cj4G+zb4P0PdeJMec65f81Ak1ioM=
262+
github.com/urfave/cli/v3 v3.10.0/go.mod h1:ysVLtOEmg2tOy6PknnYVhDoouyC/6N42TMeoMzskhso=
263263
github.com/vmware/govcloudair v0.0.2 h1:ki01OjlgpEWyEc7iZTTaWW9tISSWafiqj/PHLPB4Iwc=
264264
github.com/vmware/govcloudair v0.0.2/go.mod h1:Vxktpba+eP4dX5YzYP869DRPSm5ChQ2A/GUrmKSLvlo=
265265
github.com/vmware/govmomi v0.42.0 h1:MbvAlVfjNBE1mHMaQ7yOSop1KLB0/93x6VAGuCtjqtI=

0 commit comments

Comments
 (0)