File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 77 strategy :
88 fail-fast : false
99 matrix :
10- php : [ '8.2', '8.3' ]
10+ php : [ '8.2', '8.3', '8.4' ]
1111
1212 steps :
1313 - name : Checkout
14- uses : actions/checkout@v2
14+ uses : actions/checkout@v4
1515
1616 - name : Setup PHP
1717 uses : shivammathur/setup-php@v2
2323 run : echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
2424
2525 - name : Cache dependencies installed with composer
26- uses : actions/cache@v2
26+ uses : actions/cache@v4
2727 with :
2828 path : ${{ env.COMPOSER_CACHE_DIR }}
2929 key : php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
3737 run : composer install --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
3838
3939 - name : Run code quality analysis
40- run : make lint
40+ run : make lint
You can’t perform that action at this time.
0 commit comments