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.
1 parent 3400167 commit 0f66accCopy full SHA for 0f66acc
.github/workflows/safety.yml
@@ -45,10 +45,13 @@ jobs:
45
#----------------------------------------------
46
# Run Safety scan
47
48
+ - name: Verify installed packages
49
+ run: |
50
+ poetry run pip list | grep -E "black|urllib3"
51
- name: Safety scan
- # continue-on-error: true
52
env:
53
API_KEY: ${{secrets.SAFETY_API_KEY}}
54
run: |
55
poetry run pip install safety
- poetry run safety check || echo "Safety check completed with known vulnerabilities that are being addressed"
56
+ poetry run pip freeze > requirements-freeze.txt
57
+ poetry run safety check --file requirements-freeze.txt --ignore=66742 --ignore=77744
0 commit comments