Skip to content

Commit f9672de

Browse files
committed
Allow all package types in Github V2 importer
Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>
1 parent 8801c90 commit f9672de

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

vulnerabilities/pipelines/v2_importers/github_importer.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ def steps(cls):
114114
return (cls.collect_and_store_advisories,)
115115

116116
package_type_by_github_ecosystem = {
117-
# "MAVEN": "maven",
118-
# "NUGET": "nuget",
119-
# "COMPOSER": "composer",
120-
# "PIP": "pypi",
121-
# "RUBYGEMS": "gem",
117+
"MAVEN": "maven",
118+
"NUGET": "nuget",
119+
"COMPOSER": "composer",
120+
"PIP": "pypi",
121+
"RUBYGEMS": "gem",
122122
"NPM": "npm",
123-
# "RUST": "cargo",
123+
"RUST": "cargo",
124124
# "GO": "golang",
125125
}
126126

0 commit comments

Comments
 (0)