From b45556c2480dbda0cba45fb02c49352e51b4a195 Mon Sep 17 00:00:00 2001 From: Sergio Garcia <38561120+sergargar@users.noreply.github.com> Date: Wed, 15 May 2024 11:11:10 +0200 Subject: [PATCH] chore(safety-v3): ignore pip vulnerability (#4008) --- .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 d58fc12bb1..f4f748499e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -96,7 +96,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