diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 8b639978c..c5144cb72 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -54,7 +54,6 @@ jobs: - uses: pypa/gh-action-pip-audit@v1.0.4 with: inputs: requirements.txt - ignore-vulns: GHSA-8fww-64cx-x8p5 - name: Run npm audit run: make npm-audit diff --git a/.github/workflows/daily_checks.yml b/.github/workflows/daily_checks.yml index 4cf01398d..9e86fa442 100644 --- a/.github/workflows/daily_checks.yml +++ b/.github/workflows/daily_checks.yml @@ -29,7 +29,6 @@ jobs: - uses: pypa/gh-action-pip-audit@v1.0.4 with: inputs: requirements.txt - ignore-vulns: GHSA-8fww-64cx-x8p5 - name: Run npm audit run: make npm-audit diff --git a/Makefile b/Makefile index 7d9a1f76f..25a47aa9e 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ freeze-requirements: ## create static requirements.txt pip-audit: pipenv requirements > requirements.txt pipenv requirements --dev > requirements_for_test.txt - pipenv run pip-audit -r requirements.txt --ignore-vuln GHSA-8fww-64cx-x8p5 + pipenv run pip-audit -r requirements.txt -pipenv run pip-audit -r requirements_for_test.txt .PHONY: audit