Skip to content

Commit 7b1a3e5

Browse files
[Maintenance] Make upstream vulnerabilities not fail the pipe
1 parent 8f3eae2 commit 7b1a3e5

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,9 @@ jobs:
194194

195195
-
196196
name: Run security check
197-
run: symfony security:check
197+
run: |
198+
symfony security:check --disable-exit-code
199+
composer audit --locked
198200
199201
-
200202
name: Run ECS

composer.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@
6464
"symfony/flex": true,
6565
"symfony/thanks": false,
6666
"php-http/discovery": true
67+
},
68+
"audit": {
69+
"ignore": [
70+
"CVE-2025-31481",
71+
"CVE-2025-31485"
72+
]
6773
}
6874
},
6975
"conflict": {

0 commit comments

Comments
 (0)