We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e8cf440 + ffc79b4 commit 829afd6Copy full SHA for 829afd6
7 files changed
.github/workflows/security.yml
@@ -12,5 +12,25 @@ jobs:
12
security-check:
13
runs-on: ubuntu-latest
14
steps:
15
- - uses: actions/checkout@v4
16
- - uses: symfonycorp/security-checker-action@v5
+ - name: Checkout code
+ uses: actions/checkout@v4
17
+
18
+ - name: Run symfonycorp/security-checker
19
+ uses: symfonycorp/security-checker-action@v5
20
21
+ - name: Setup PHP
22
+ uses: shivammathur/setup-php@v2
23
+ with:
24
+ php-version: "8.4"
25
26
+ - name: Cache Composer
27
+ uses: actions/cache@v3
28
29
+ path: vendor
30
+ key: composer-${{ hashFiles('composer.lock') }}
31
32
+ - name: Install dependencies
33
+ run: composer install --prefer-dist --no-progress
34
35
+ - name: Run compose audit
36
+ run: composer audit
0 commit comments