Skip to content

Commit b76e466

Browse files
authored
remove ossaudit - ossaudit has lots of flase positives. And there's better ways to address security for depenencies within github.
1 parent a017c3c commit b76e466

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

.github/workflows/test.yml

-10
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,6 @@ jobs:
2323
run: |
2424
python -m pip install --upgrade pip
2525
pip install ".[dev]"
26-
- name: Audit Python packages for known vulnerabilities
27-
run: |
28-
if ! RES=$(ossaudit --installed --config setup.cfg); then
29-
RES="${RES//'%'/'%25'}"
30-
RES="${RES//$'\n'/'%0A'}"
31-
RES="${RES//$'\r'/'%0D'}"
32-
echo "::error ::${RES}"
33-
exit 1
34-
fi
35-
echo ${RES}
3626
- name: Format with black
3727
run: |
3828
if ! RES=$(black --check $(git diff --name-only --diff-filter=AM master -- "*.py") 2>&1); then

0 commit comments

Comments
 (0)