From 223aab8ece405fbfe577578d819ab3b64d1959cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Fern=C3=A1ndez=20Poyatos?= Date: Fri, 20 Jun 2025 14:28:23 +0200 Subject: [PATCH] chore(API): skip safety vulnerabilities related to asteval (#8076) --- .github/workflows/api-pull-request.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/api-pull-request.yml b/.github/workflows/api-pull-request.yml index 82a9fb8c60..db826d7a46 100644 --- a/.github/workflows/api-pull-request.yml +++ b/.github/workflows/api-pull-request.yml @@ -169,8 +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 run: | - poetry run safety check --ignore 70612,66963,74429 + poetry run safety check --ignore 70612,66963,74429,76352,76353 - name: Vulture working-directory: ./api