Skip to content

Commit

Permalink
imports: replace gopkg.in/antchfx/htmlquery.v1
Browse files Browse the repository at this point in the history
replace gopkg.in/antchfx/htmlquery.v1 with github.com/antchfx/htmlquery

Signed-off-by: Alexandre Vicenzi <[email protected]>
  • Loading branch information
alexandrevicenzi committed Jan 9, 2025
1 parent 8d9b8c1 commit 3fa9fd8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ go 1.22.7
toolchain go1.23.2

require (
github.com/antchfx/htmlquery v1.3.4
github.com/flosch/pongo2/v4 v4.0.2
github.com/google/go-github/v56 v56.0.0
github.com/lxc/incus/v6 v6.6.0
Expand All @@ -14,7 +15,6 @@ require (
github.com/stretchr/testify v1.9.0
golang.org/x/sys v0.28.0
golang.org/x/text v0.21.0
gopkg.in/antchfx/htmlquery.v1 v1.2.2
gopkg.in/yaml.v2 v2.4.0
)

Expand Down Expand Up @@ -98,5 +98,3 @@ require (
)

replace github.com/mudler/docker-companion => github.com/geaaru/docker-companion v0.4.6-0.20241113113045-0f9ad14bc226

replace gopkg.in/antchfx/htmlquery.v1 v1.2.2 => github.com/antchfx/htmlquery v1.3.4
2 changes: 1 addition & 1 deletion sources/archlinux-http.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sort"
"strings"

"gopkg.in/antchfx/htmlquery.v1"
"github.com/antchfx/htmlquery"

"github.com/lxc/distrobuilder/shared"
)
Expand Down
2 changes: 1 addition & 1 deletion sources/opensuse-http.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"sort"
"strings"

"gopkg.in/antchfx/htmlquery.v1"
"github.com/antchfx/htmlquery"

"github.com/lxc/distrobuilder/shared"
)
Expand Down
2 changes: 1 addition & 1 deletion sources/oraclelinux-http.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"sort"
"strings"

"github.com/antchfx/htmlquery"
incus "github.com/lxc/incus/v6/shared/util"
"golang.org/x/sys/unix"
"gopkg.in/antchfx/htmlquery.v1"

"github.com/lxc/distrobuilder/shared"
)
Expand Down
2 changes: 1 addition & 1 deletion sources/plamolinux-http.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strconv"
"strings"

"gopkg.in/antchfx/htmlquery.v1"
"github.com/antchfx/htmlquery"

"github.com/lxc/distrobuilder/shared"
)
Expand Down
2 changes: 1 addition & 1 deletion sources/slackware-http.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"slices"
"strings"

"gopkg.in/antchfx/htmlquery.v1"
"github.com/antchfx/htmlquery"

"github.com/lxc/distrobuilder/shared"
)
Expand Down

0 comments on commit 3fa9fd8

Please sign in to comment.