1 Commits

Author SHA1 Message Date
31cfea9846 fix(deps): update module github.com/urfave/cli/v2 to v3 2026-01-24 00:07:38 +00:00
8 changed files with 9 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ import (
"fmt"
"time"
"github.com/urfave/cli/v2"
"github.com/urfave/cli/v3"
)
var Certs = &cli.Command{

View File

@@ -1,7 +1,7 @@
package cli
import (
"github.com/urfave/cli/v2"
"github.com/urfave/cli/v3"
)
var (

View File

@@ -4,7 +4,7 @@ import (
"fmt"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v2"
"github.com/urfave/cli/v3"
"codeberg.org/codeberg/pages/server/database"
"codeberg.org/codeberg/pages/server/version"

View File

@@ -7,7 +7,7 @@ import (
"github.com/creasty/defaults"
"github.com/pelletier/go-toml/v2"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v2"
"github.com/urfave/cli/v3"
)
var ALWAYS_BLACKLISTED_PATHS = []string{

View File

@@ -7,7 +7,7 @@ import (
"github.com/pelletier/go-toml/v2"
"github.com/stretchr/testify/assert"
"github.com/urfave/cli/v2"
"github.com/urfave/cli/v3"
cmd "codeberg.org/codeberg/pages/cli"
)

1
go.mod
View File

@@ -19,6 +19,7 @@ require (
github.com/rs/zerolog v1.34.0
github.com/stretchr/testify v1.11.1
github.com/urfave/cli/v2 v2.27.7
github.com/urfave/cli/v3 v3.6.2
golang.org/x/exp v0.0.0-20260112195511-716be5621a96
xorm.io/xorm v1.3.11
)

2
go.sum
View File

@@ -952,6 +952,8 @@ github.com/ultradns/ultradns-go-sdk v1.8.1-20250722213956-faef419/go.mod h1:QN0/
github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI=
github.com/urfave/cli/v2 v2.27.7 h1:bH59vdhbjLv3LAvIu6gd0usJHgoTTPhCFib8qqOwXYU=
github.com/urfave/cli/v2 v2.27.7/go.mod h1:CyNAG/xg+iAOg0N4MPGZqVmv2rCoP267496AOXUZjA4=
github.com/urfave/cli/v3 v3.6.2 h1:lQuqiPrZ1cIz8hz+HcrG0TNZFxU70dPZ3Yl+pSrH9A8=
github.com/urfave/cli/v3 v3.6.2/go.mod h1:ysVLtOEmg2tOy6PknnYVhDoouyC/6N42TMeoMzskhso=
github.com/vinyldns/go-vinyldns v0.9.17 h1:hfPZfCaxcRBX6Gsgl42rLCeoal58/BH8kkvJShzjjdI=
github.com/vinyldns/go-vinyldns v0.9.17/go.mod h1:pwWhE9K/leGDOIduVhRGvQ3ecVMHWRfEnKYUTEU3gB4=
github.com/volcengine/volc-sdk-golang v1.0.233 h1:Hh2pzwu/Wq19rsZgNo3HdpjQB28D/F0+m6EjLVggmhM=

View File

@@ -12,7 +12,7 @@ import (
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v2"
"github.com/urfave/cli/v3"
cmd "codeberg.org/codeberg/pages/cli"
"codeberg.org/codeberg/pages/config"