Skip to content

Commit 829afd6

Browse files
committed
Merge branch 'master' into prod
2 parents e8cf440 + ffc79b4 commit 829afd6

7 files changed

Lines changed: 154 additions & 71 deletions

File tree

.github/workflows/security.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,25 @@ jobs:
1212
security-check:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
16-
- uses: symfonycorp/security-checker-action@v5
15+
- name: Checkout code
16+
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+
with:
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

Comments
 (0)