diff --git a/fetcher/ubuntu.go b/fetcher/ubuntu.go index c7a8450..0c2b621 100644 --- a/fetcher/ubuntu.go +++ b/fetcher/ubuntu.go @@ -15,14 +15,14 @@ import ( ) const ( - ubuntuRepoURL = "https://github.com/aquasecurity/vuln-list.git" + ubuntuRepoURL = "https://github.com/aquasecurity/vuln-list-reserve.git" ubuntuDir = "ubuntu" ) // FetchUbuntuVulnList clones vuln-list and returns CVE JSONs func FetchUbuntuVulnList() (entries []models.UbuntuCVEJSON, err error) { // Clone vuln-list repository - dir := filepath.Join(util.CacheDir(), "vuln-list") + dir := filepath.Join(util.CacheDir(), "vuln-list-reserve") updatedFiles, err := git.CloneOrPull(ubuntuRepoURL, dir, ubuntuDir) if err != nil { return nil, xerrors.Errorf("error in vulnsrc clone or pull: %w", err)