-
Notifications
You must be signed in to change notification settings - Fork 0
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
complete consolidation of Safety ignore-lists #14
Comments
Now that we have |
I do think we should pick one - but I'm not sure this is the one that I would pick. In much the same way as we're looking at moving |
We could also keep the per-repo safety jobs but use the ignore list from the fpf-misc-resources repository (just checkout the repo during the test run and make sure safety uses it for the exclude list instead of all of our In the meantime I've been using this script for a while now: #!/usr/bin/env python3
import json
from pathlib import Path
data = json.loads(Path("projectfiles/securedrop.json").read_text())
for id in sorted(data["variables"]["SAFETY_IGNORE_IDS"]):
print(f" --ignore {id} \\") to generate the Makefile listing. |
Witness what's been needed to ignore Safety 61601 (urllib3 CVE-2023-43804) to date:
The text was updated successfully, but these errors were encountered: