Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion discovery_workspace.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"

"github.com/BurntSushi/toml"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

func (d *manifestDiscovery) discoverCargoWorkspace() error {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
github.com/bmatcuk/doublestar/v4 v4.10.0
github.com/git-pkgs/pom v0.1.7
github.com/git-pkgs/purl v0.1.20
gopkg.in/yaml.v3 v3.0.1
go.yaml.in/yaml/v3 v3.0.5
)

require (
Expand Down
6 changes: 2 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,5 @@ github.com/git-pkgs/vers v0.7.0 h1:7PD2DKFB8jTDIfiyWXbqYW54iVuNkFCBgXHgxOTdr8A=
github.com/git-pkgs/vers v0.7.0/go.mod h1:ofLiBpPNkQmC0LB1k0zmN1gCv7Hi3MiZx8WtmWZ4A9A=
github.com/package-url/packageurl-go v0.1.7 h1:iFWg6tzAjLA6F/qX3M5nZaiMHJgc+p2zxVyr/fY+sZY=
github.com/package-url/packageurl-go v0.1.7/go.mod h1:nKAWB8E6uk1MHqiS/lQb9pYBGH2+mdJ2PJc2s50dQY0=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
go.yaml.in/yaml/v3 v3.0.5 h1:N6y/pJk8buWs9NY5ERU2HSMfm+IuD/OtfdAnq6kESPw=
go.yaml.in/yaml/v3 v3.0.5/go.mod h1:HVTZu1O7/Vkt2N+BFy8Zza+lnLsABggaTM2ZpNIGuKg=
2 changes: 1 addition & 1 deletion internal/conda/conda.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/git-pkgs/manifests/internal/core"
"strings"

"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

const condaChannelURLParts = 4 // scheme + empty + host + channel
Expand Down
2 changes: 1 addition & 1 deletion internal/cpan/cpan.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"regexp"
"strings"

"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

const perlPackage = "perl"
Expand Down
2 changes: 1 addition & 1 deletion internal/crystal/crystal.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/git-pkgs/manifests/internal/core"
"strings"

"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion internal/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"regexp"
"strings"

"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion internal/github_actions/actions_lock.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"

"github.com/git-pkgs/manifests/internal/core"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion internal/github_actions/github_actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/git-pkgs/manifests/internal/core"

"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion internal/golang/legacy.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/BurntSushi/toml"
"github.com/git-pkgs/manifests/internal/core"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

const basePackageSegments = 3 // e.g. github.com/owner/repo
Expand Down
2 changes: 1 addition & 1 deletion internal/hackage/hackage.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"regexp"
"strings"

"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion internal/helm/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strings"

"github.com/git-pkgs/manifests/internal/core"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion internal/precommit/precommit.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/BurntSushi/toml"
"github.com/git-pkgs/manifests/internal/core"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion internal/pub/pub.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strings"

"github.com/git-pkgs/manifests/internal/core"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

func init() {
Expand Down