We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
safety
1 parent b31e3bd commit c9e3a13Copy full SHA for c9e3a13
1 file changed
.github/workflows/lint.yml
@@ -26,5 +26,6 @@ jobs:
26
# TODO: remove setuptools installation when safety==2.4.0 is released
27
python -m pip install --upgrade safety setuptools
28
python -m pip install --editable .
29
- # Ignore CVE-2023-5752, we're not using that pip or feature
30
- - run: safety check --ignore 62044
+ # Ignore 62044 / CVE-2023-5752, we're not using that pip or feature
+ # Ignore 70612 / CVE-2019-8341, Jinja2 is a safety dep, not ours
31
+ - run: safety check --ignore 62044 --ignore 70612
0 commit comments