refactor(api): remove graph_database and is_graph_database_deleted from AttackPathsScan (#10077)

This commit is contained in:
Josema Camacho
2026-02-16 12:46:49 +01:00
committed by GitHub
parent be516f1dfc
commit bb34f6cc3d
15 changed files with 76 additions and 142 deletions
+8 -7
View File
@@ -1,14 +1,14 @@
name: 'API: Security'
name: "API: Security"
on:
push:
branches:
- 'master'
- 'v5.*'
- "master"
- "v5.*"
pull_request:
branches:
- 'master'
- 'v5.*'
- "master"
- "v5.*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
@@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
python-version:
- '3.12'
- "3.12"
defaults:
run:
working-directory: ./api
@@ -61,8 +61,9 @@ jobs:
- name: Safety
if: steps.check-changes.outputs.any_changed == 'true'
run: poetry run safety check --ignore 79023,79027
run: poetry run safety check --ignore 79023,79027,84420
# TODO: 79023 & 79027 knack ReDoS until `azure-cli-core` (via `cartography`) allows `knack` >=0.13.0
# TODO: 84420 from `azure-core`, that we need fix alltogether with `azure-cli-core` and `knack`
- name: Vulture
if: steps.check-changes.outputs.any_changed == 'true'