chore: ignore Flask Safety alert in API (#8114)

This commit is contained in:
Víctor Fernández Poyatos
2025-06-26 16:02:39 +02:00
committed by GitHub
parent 325e5739a2
commit d102ee2fd5

View File

@@ -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