From 57e5e0e0dd60c334b47054102c73c48a554aa103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Mon, 30 Jan 2023 23:00:33 +0100 Subject: [PATCH] ignore setuptools vuln MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- .github/workflows/CI.yml | 4 ++-- .github/workflows/audit.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8cf33c4..16291a5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -41,7 +41,7 @@ jobs: python-version: 3.9 - name: Install pip-audit - run: pip install --upgrade pip pip-audit setuptools + run: pip install --upgrade pip pip-audit - name: Install dependencies run: pip install . @@ -50,7 +50,7 @@ jobs: run: pip freeze > requirements.txt - name: Audit dependencies - run: pip-audit --ignore-vuln PYSEC-2022-42969 --ignore-vuln PYSEC-2022-203 + run: pip-audit --ignore-vuln PYSEC-2022-42969 --ignore-vuln PYSEC-2022-203 --ignore-vuln GHSA-r9hx-vwmv-q579 test: needs: lint diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index c1d4be6..9052213 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -22,7 +22,7 @@ jobs: python-version: 3.9 - name: Install pip-audit - run: pip install --upgrade pip pip-audit setuptools + run: pip install --upgrade pip pip-audit - name: Install dependencies run: pip install . @@ -31,6 +31,6 @@ jobs: run: pip freeze > requirements.txt - name: Audit dependencies - run: pip-audit --ignore-vuln PYSEC-2022-42969 --ignore-vuln PYSEC-2022-203 + run: pip-audit --ignore-vuln PYSEC-2022-42969 --ignore-vuln PYSEC-2022-203 --ignore-vuln GHSA-r9hx-vwmv-q579 \ No newline at end of file