File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 1414 strategy :
1515 matrix :
1616 php-versions : ['8.0', '8.1']
17+
1718 steps :
1819 - name : Checkout
1920 uses : actions/checkout@v3
Original file line number Diff line number Diff line change 1414 strategy :
1515 matrix :
1616 php-versions : ['8.0', '8.1']
17- composer-dependencies : ['lowest', 'highest']
17+
1818 steps :
1919 - name : Checkout
2020 uses : actions/checkout@v3
Original file line number Diff line number Diff line change 11name : Security Check
22
33on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
410 schedule :
5- - cron : ' 0 3 * * * '
11+ - cron : ' 0 3 * * 0 '
612
713jobs :
814 build :
915 name : Security check
1016 runs-on : ubuntu-latest
17+ strategy :
18+ matrix :
19+ php-versions : [ '8.0', '8.1' ]
1120
1221 steps :
1322 - name : Checkout
1423 uses : actions/checkout@v3
1524
25+ - name : Setup PHP
26+ uses : shivammathur/setup-php@v2
27+ with :
28+ php-version : ${{ matrix.php-versions }}
29+
30+ - name : Install Composer dependencies
31+ uses : ramsey/composer-install@v2
32+ with :
33+ composer-options : ' --prefer-stable'
34+
1635 - name : Check for vulnerabilities
1736 uses : symfonycorp/security-checker-action@v5
1837 with :
You can’t perform that action at this time.
0 commit comments