Skip to content

Commit c9e3a13

Browse files
authored
Ignore Jinja2 CVE warning in safety dep (#129)
* Ignore Jinja2 CVE warning in `safety` dep * Specify `--ignore` twice
1 parent b31e3bd commit c9e3a13

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/lint.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ jobs:
2626
# TODO: remove setuptools installation when safety==2.4.0 is released
2727
python -m pip install --upgrade safety setuptools
2828
python -m pip install --editable .
29-
# Ignore CVE-2023-5752, we're not using that pip or feature
30-
- run: safety check --ignore 62044
29+
# Ignore 62044 / CVE-2023-5752, we're not using that pip or feature
30+
# Ignore 70612 / CVE-2019-8341, Jinja2 is a safety dep, not ours
31+
- run: safety check --ignore 62044 --ignore 70612

0 commit comments

Comments
 (0)