diff --git a/README.md b/README.md index 2aa9a81..99047f3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Tests](https://github.com/RedHatProductSecurity/deplist/actions/workflows/go.yml/badge.svg)](https://github.com/RedHatProductSecurity/deplist/actions/workflows/go.yml) +[![Tests](https://github.com/mcoops/deplist/actions/workflows/go.yml/badge.svg)](https://github.com/mcoops/deplist/actions/workflows/go.yml) # deplist diff --git a/cmd/deplist/deplist.go b/cmd/deplist/deplist.go index bb79c79..8cd37d3 100644 --- a/cmd/deplist/deplist.go +++ b/cmd/deplist/deplist.go @@ -4,7 +4,7 @@ import ( "flag" "fmt" - "github.com/RedHatProductSecurity/deplist" + "github.com/mcoops/deplist" purl "github.com/mcoops/packageurl-go" log "github.com/sirupsen/logrus" ) diff --git a/deplist.go b/deplist.go index 38eed2f..bac93a6 100644 --- a/deplist.go +++ b/deplist.go @@ -7,8 +7,8 @@ import ( "path/filepath" "strings" - "github.com/RedHatProductSecurity/deplist/internal/scan" - "github.com/RedHatProductSecurity/deplist/internal/utils" + "github.com/mcoops/deplist/internal/scan" + "github.com/mcoops/deplist/internal/utils" ) // enums start at 1 to allow us to specify found languages 0 = nil diff --git a/deplist_test.go b/deplist_test.go index ccaf994..7e3b63b 100644 --- a/deplist_test.go +++ b/deplist_test.go @@ -10,7 +10,7 @@ func BuildWant() []Dependency { golangPaths := []string{ "errors", "fmt", - "github.com/RedHatProductSecurity/deplist", + "github.com/mcoops/deplist", "github.com/openshift/api/config/v1", "golang.org/x/text/unicode", "internal/abi", diff --git a/go.mod b/go.mod index 0fcb882..601d480 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/RedHatProductSecurity/deplist +module github.com/mcoops/deplist go 1.17 diff --git a/internal/scan/nodejs.go b/internal/scan/nodejs.go index 275cac1..7e6506d 100644 --- a/internal/scan/nodejs.go +++ b/internal/scan/nodejs.go @@ -7,7 +7,7 @@ import ( "path/filepath" "strings" - "github.com/RedHatProductSecurity/deplist/internal/utils" + "github.com/mcoops/deplist/internal/utils" log "github.com/sirupsen/logrus" ) diff --git a/test/testRepo/go.mod b/test/testRepo/go.mod index 90a1ab6..707a832 100644 --- a/test/testRepo/go.mod +++ b/test/testRepo/go.mod @@ -1,4 +1,4 @@ -module github.com/RedHatProductSecurity/deplist +module github.com/mcoops/deplist go 1.13