From d102ee2fd56e85ec021f5db6684ac73f166bb5bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Fern=C3=A1ndez=20Poyatos?= Date: Thu, 26 Jun 2025 16:02:39 +0200 Subject: [PATCH] chore: ignore Flask Safety alert in API (#8114) --- .github/workflows/api-pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/api-pull-request.yml b/.github/workflows/api-pull-request.yml index db826d7a46..b64fbe6826 100644 --- a/.github/workflows/api-pull-request.yml +++ b/.github/workflows/api-pull-request.yml @@ -169,9 +169,9 @@ jobs: - name: Safety working-directory: ./api if: steps.are-non-ignored-files-changed.outputs.any_changed == 'true' - # 76352 and 76353 come from SDK, but they cannot upgrade it yet. It does not affect API + # 76352, 76353, 77323 come from SDK, but they cannot upgrade it yet. It does not affect API run: | - poetry run safety check --ignore 70612,66963,74429,76352,76353 + poetry run safety check --ignore 70612,66963,74429,76352,76353,77323 - name: Vulture working-directory: ./api