File tree Expand file tree Collapse file tree 15 files changed +120
-23
lines changed
Expand file tree Collapse file tree 15 files changed +120
-23
lines changed Original file line number Diff line number Diff line change 5757
5858 # Create an artifact of the html output
5959 - name : Upload artifact
60- uses : actions/upload-artifact@v5
60+ uses : actions/upload-artifact@v6
6161 with :
6262 name : HTML Documentation
6363 path : user_guide_src/build/html/
Original file line number Diff line number Diff line change 3030 coverage : xdebug
3131
3232 - name : Download coverage files
33- uses : actions/download-artifact@v6
33+ uses : actions/download-artifact@v7
3434 with :
3535 path : build/cov
3636
4343 echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
4444
4545 - name : Cache dependencies
46- uses : actions/cache@v4
46+ uses : actions/cache@v5
4747 with :
4848 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
4949 key : ${{ github.job }}-php-${{ inputs.php-version }}-${{ hashFiles('**/composer.*') }}
5252 ${{ github.job }}-
5353
5454 - name : Cache PHPUnit's static analysis cache
55- uses : actions/cache@v4
55+ uses : actions/cache@v5
5656 with :
5757 path : build/.phpunit.cache/code-coverage
5858 key : phpunit-code-coverage-${{ hashFiles('**/phpunit.*') }}
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ jobs:
173173 echo "ARTIFACT_NAME=${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}-db-${{ inputs.db-platform || 'none' }}${{ inputs.mysql-version || '' }}" >> $GITHUB_ENV
174174
175175 - name : Cache dependencies
176- uses : actions/cache@v4
176+ uses : actions/cache@v5
177177 with :
178178 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
179179 key : ${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}-db-${{ inputs.db-platform || 'none' }}-${{ hashFiles('**/composer.*') }}
@@ -184,7 +184,7 @@ jobs:
184184
185185 - name : Cache PHPUnit's static analysis cache
186186 if : ${{ inputs.enable-artifact-upload }}
187- uses : actions/cache@v4
187+ uses : actions/cache@v5
188188 with :
189189 path : build/.phpunit.cache/code-coverage
190190 key : phpunit-code-coverage-${{ hashFiles('**/phpunit.*') }}
@@ -213,7 +213,7 @@ jobs:
213213
214214 - name : Upload coverage results as artifact
215215 if : ${{ inputs.enable-artifact-upload }}
216- uses : actions/upload-artifact@v5
216+ uses : actions/upload-artifact@v6
217217 with :
218218 name : ${{ env.ARTIFACT_NAME }}
219219 path : build/cov/coverage-${{ env.ARTIFACT_NAME }}.cov
Original file line number Diff line number Diff line change 8585 echo "ARTIFACT_NAME=${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}" >> $GITHUB_ENV
8686
8787 - name : Cache Composer dependencies
88- uses : actions/cache@v4
88+ uses : actions/cache@v5
8989 with :
9090 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
9191 key : ${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}-${{ hashFiles('**/composer.*') }}
9595
9696 - name : Cache PHPUnit's static analysis cache
9797 if : ${{ inputs.enable-artifact-upload }}
98- uses : actions/cache@v4
98+ uses : actions/cache@v5
9999 with :
100100 path : build/.phpunit.cache/code-coverage
101101 key : phpunit-code-coverage-${{ hashFiles('**/phpunit.*') }}
@@ -122,7 +122,7 @@ jobs:
122122
123123 - name : Upload coverage results as artifact
124124 if : ${{ inputs.enable-artifact-upload }}
125- uses : actions/upload-artifact@v5
125+ uses : actions/upload-artifact@v6
126126 with :
127127 name : ${{ env.ARTIFACT_NAME }}
128128 path : build/cov/coverage-${{ env.ARTIFACT_NAME }}.cov
Original file line number Diff line number Diff line change 5454 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
5555
5656 - name : Cache dependencies
57- uses : actions/cache@v4
57+ uses : actions/cache@v5
5858 with :
5959 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
6060 key : ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
Original file line number Diff line number Diff line change 5959 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
6060
6161 - name : Cache dependencies
62- uses : actions/cache@v4
62+ uses : actions/cache@v5
6363 with :
6464 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
6565 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
6969 run : mkdir -p build/
7070
7171 - name : Cache Deptrac results
72- uses : actions/cache@v4
72+ uses : actions/cache@v5
7373 with :
7474 path : build
7575 key : ${{ runner.os }}-deptrac-${{ github.sha }}
Original file line number Diff line number Diff line change 7171 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
7272
7373 - name : Cache dependencies
74- uses : actions/cache@v4
74+ uses : actions/cache@v5
7575 with :
7676 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
7777 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
8181 run : mkdir -p build/phpstan
8282
8383 - name : Cache PHPStan result cache directory
84- uses : actions/cache@v4
84+ uses : actions/cache@v5
8585 with :
8686 path : build/phpstan
8787 key : ${{ runner.os }}-phpstan-${{ github.sha }}
Original file line number Diff line number Diff line change 5454 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
5555
5656 - name : Cache composer dependencies
57- uses : actions/cache@v4
57+ uses : actions/cache@v5
5858 with :
5959 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
6060 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}-${{ hashFiles('**/composer.lock') }}
6464 run : mkdir -p build/psalm
6565
6666 - name : Cache Psalm results
67- uses : actions/cache@v4
67+ uses : actions/cache@v5
6868 with :
6969 path : build/psalm
7070 key : ${{ runner.os }}-psalm-${{ github.sha }}
Original file line number Diff line number Diff line change 7777 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
7878
7979 - name : Cache dependencies
80- uses : actions/cache@v4
80+ uses : actions/cache@v5
8181 with :
8282 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
8383 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
8787 run : composer update --ansi --no-interaction ${{ matrix.composer-option }}
8888
8989 - name : Rector Cache
90- uses : actions/cache@v4
90+ uses : actions/cache@v5
9191 with :
9292 path : /tmp/rector
9393 key : ${{ runner.os }}-rector-${{ github.run_id }}
Original file line number Diff line number Diff line change 2828 "phpunit/phpcov" : " ^9.0.2 || ^10.0" ,
2929 "phpunit/phpunit" : " ^10.5.16 || ^11.2" ,
3030 "predis/predis" : " ^3.0" ,
31- "rector/rector" : " 2.2.14 " ,
31+ "rector/rector" : " 2.3.0 " ,
3232 "shipmonk/phpstan-baseline-per-identifier" : " ^2.0"
3333 },
3434 "replace" : {
You can’t perform that action at this time.
0 commit comments