From 1fe0ad0d83cac9f92d0df5f1a9c9079bc79c13b2 Mon Sep 17 00:00:00 2001 From: Ryan Ahearn Date: Tue, 28 Mar 2023 09:16:09 -0400 Subject: [PATCH] Ignore known issue with redis 4.5.3 --- .github/workflows/checks.yml | 2 +- .github/workflows/daily_checks.yml | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 42725c0c6..8b639978c 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -54,7 +54,7 @@ jobs: - uses: pypa/gh-action-pip-audit@v1.0.4 with: inputs: requirements.txt - ignore-vulns: PYSEC-2022-237 + 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 86b7237aa..4cf01398d 100644 --- a/.github/workflows/daily_checks.yml +++ b/.github/workflows/daily_checks.yml @@ -29,7 +29,7 @@ jobs: - uses: pypa/gh-action-pip-audit@v1.0.4 with: inputs: requirements.txt - ignore-vulns: PYSEC-2022-237 + ignore-vulns: GHSA-8fww-64cx-x8p5 - name: Run npm audit run: make npm-audit diff --git a/Makefile b/Makefile index f77aa4c8d..7d9a1f76f 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 PYSEC-2022-237 + pipenv run pip-audit -r requirements.txt --ignore-vuln GHSA-8fww-64cx-x8p5 -pipenv run pip-audit -r requirements_for_test.txt .PHONY: audit