File tree Expand file tree Collapse file tree 8 files changed +15
-15
lines changed
Expand file tree Collapse file tree 8 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 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' }}" >> $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.*') }}
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.*') }}
Original file line number Diff line number Diff line change 5252 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
5353
5454 - name : Cache dependencies
55- uses : actions/cache@v4
55+ uses : actions/cache@v5
5656 with :
5757 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
5858 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 4949 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
5050
5151 - name : Cache composer dependencies
52- uses : actions/cache@v4
52+ uses : actions/cache@v5
5353 with :
5454 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
5555 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}-${{ hashFiles('**/composer.lock') }}
5959 run : mkdir -p build/psalm
6060
6161 - name : Cache Psalm results
62- uses : actions/cache@v4
62+ uses : actions/cache@v5
6363 with :
6464 path : build/psalm
6565 key : ${{ runner.os }}-psalm-${{ github.sha }}
Original file line number Diff line number Diff line change 7272 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
7373
7474 - name : Cache dependencies
75- uses : actions/cache@v4
75+ uses : actions/cache@v5
7676 with :
7777 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
7878 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
8282 run : composer update --ansi --no-interaction
8383
8484 - name : Rector Cache
85- uses : actions/cache@v4
85+ uses : actions/cache@v5
8686 with :
8787 path : /tmp/rector
8888 key : ${{ runner.os }}-rector-${{ github.run_id }}
You can’t perform that action at this time.
0 commit comments