From 4fbddd5b4236724b7725ba8c4c20a59ec89fa2ee Mon Sep 17 00:00:00 2001 From: Sergio Garcia <38561120+sergargar@users.noreply.github.com> Date: Wed, 15 May 2024 10:44:50 +0200 Subject: [PATCH] chore(safety): ignore pip vulnerability (#4007) --- .github/workflows/pull-request.yml | 2 +- .pre-commit-config.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 541755cd71..7c36bddbb9 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -73,7 +73,7 @@ jobs: - name: Safety if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' run: | - poetry run safety check + poetry run safety check --ignore 67599 - name: Vulture if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' run: | diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e678592c08..411053d7fe 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -97,7 +97,7 @@ repos: - id: safety name: safety description: "Safety is a tool that checks your installed dependencies for known security vulnerabilities" - entry: bash -c 'safety check' + entry: bash -c 'safety check --ignore 67599' language: system - id: vulture