File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 steps :
99 - name : Checkout
10- uses : actions/checkout@v4
10+ uses : actions/checkout@v6
1111
1212 - name : Setup PHP
1313 uses : shivammathur/setup-php@v2
1919 run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2020
2121 - name : Cache dependencies
22- uses : actions/cache@v4
22+ uses : actions/cache@v5
2323 with :
2424 path : ${{ steps.composer-cache.outputs.dir }}
2525 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
3636 runs-on : ubuntu-latest
3737 steps :
3838 - name : Checkout
39- uses : actions/checkout@v4
39+ uses : actions/checkout@v6
4040
4141 - name : Setup PHP
4242 uses : shivammathur/setup-php@v2
4848 run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
4949
5050 - name : Cache dependencies
51- uses : actions/cache@v4
51+ uses : actions/cache@v5
5252 with :
5353 path : ${{ steps.composer-cache.outputs.dir }}
5454 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Original file line number Diff line number Diff line change 55 tests :
66 strategy :
77 matrix :
8- php-versions : [ '8.4 ' ]
8+ php-versions : [ '8.3', '8.4', '8.5 ' ]
99
1010 runs-on : ubuntu-latest
1111
1212 name : Test on PHP ${{ matrix.php-versions }}
1313
1414 steps :
1515 - name : Checkout
16- uses : actions/checkout@v4
16+ uses : actions/checkout@v6
1717 with :
1818 fetch-depth : 0
1919
2929 run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3030
3131 - name : Cache dependencies
32- uses : actions/cache@v4
32+ uses : actions/cache@v5
3333 with :
3434 path : ${{ steps.composer-cache.outputs.dir }}
3535 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
5656
5757 - name : Scan code with SonarCloud
5858 if : matrix.php-versions == '8.4'
59- uses : SonarSource/sonarqube-scan-action@v5
59+ uses : SonarSource/sonarqube-scan-action@v8
6060 env :
6161 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
6262 SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
You can’t perform that action at this time.
0 commit comments