-
Notifications
You must be signed in to change notification settings - Fork 220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: Collect data from Anchore NVD overrides #1773
base: main
Are you sure you want to change the base?
Fix: Collect data from Anchore NVD overrides #1773
Conversation
…ES.rst and __init__.py Signed-off-by: Shrish Mishra <[email protected]> Signed-off-by: Shrish0098 <[email protected]>
@@ -42,6 +41,8 @@ | |||
from vulnerabilities.pipelines import nvd_importer | |||
from vulnerabilities.pipelines import pypa_importer | |||
from vulnerabilities.pipelines import pysec_importer | |||
from vulnerabilities.pipelines.anchore_importer import AnchoreImporterPipeline |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please follow the import style, take example from above. Thanks!
@@ -0,0 +1,77 @@ | |||
from datetime import datetime |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add the license header.
affected_packages=[affected_package], | ||
references=references, | ||
date_published=date_published, | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Run make valid
.
Sure I'll definitely do the changes in this branch |
…[email protected]> Signed-off-by: Shrish0098 <[email protected]>
Hey @TG1999 I have fixed the issues that you told me, can you please review it and let me know if any further changes are required. |
Fix #1437 - Added new pipeline called anchore_importer and also updated SOURCES.rst and init.py
Signed-off-by: Shrish Mishra [email protected]