File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,15 @@ jobs:
1515 build :
1616 strategy :
1717 matrix :
18- php : ['8.2', '7.2']
18+ php :
19+ - ' 8.3'
20+ - ' 7.4'
1921 fail-fast : false
2022 name : PHP ${{ matrix.php }}
2123 runs-on : ubuntu-latest
2224 steps :
2325 - name : Checkout repository
24- uses : actions/checkout@v3
26+ uses : actions/checkout@v4
2527
2628 - name : Install PHP
2729 uses : shivammathur/setup-php@v2
@@ -36,20 +38,20 @@ jobs:
3638
3739 - name : Get Composer Cache Directory
3840 id : composer-cache-dir
39- run : |
40- echo " dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
41+ run : | # shell
42+ echo dir=" $(composer config cache-files-dir)" >> " $GITHUB_OUTPUT"
4143
4244 - name : Cache PHP Dependencies
4345 id : composer-cache
44- uses : actions/cache@v3
46+ uses : actions/cache@v4
4547 with :
4648 path : ${{ steps.composer-cache-dir.outputs.dir }}
4749 key : ${{ runner.os }}-composer-${{ matrix.php }}-${{ hashFiles('composer.json') }}
4850
4951 - name : Install PHP Dependencies
50- run : |
52+ run : | # shell
5153 composer install --prefer-dist --no-progress --no-interaction
5254
5355 - name : Run the tests
54- run : |
56+ run : | # shell
5557 composer test
You can’t perform that action at this time.
0 commit comments