File tree Expand file tree Collapse file tree 8 files changed +14
-14
lines changed
Expand file tree Collapse file tree 8 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 3737 echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
3838
3939 - name : Cache dependencies
40- uses : actions/cache@v3
40+ uses : actions/cache@v4
4141 with :
4242 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
4343 key : ${{ github.job }}-php-${{ inputs.php-version }}-${{ hashFiles('**/composer.*') }}
4646 ${{ github.job }}-
4747
4848 - name : Cache PHPUnit's static analysis cache
49- uses : actions/cache@v3
49+ uses : actions/cache@v4
5050 with :
5151 path : build/.phpunit.cache/code-coverage
5252 key : phpunit-code-coverage-${{ hashFiles('**/phpunit.*') }}
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ jobs:
167167 echo "ARTIFACT_NAME=${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}-db-${{ inputs.db-platform || 'none' }}" >> $GITHUB_ENV
168168
169169 - name : Cache dependencies
170- uses : actions/cache@v3
170+ uses : actions/cache@v4
171171 with :
172172 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
173173 key : ${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}-db-${{ inputs.db-platform || 'none' }}-${{ hashFiles('**/composer.*') }}
@@ -178,7 +178,7 @@ jobs:
178178
179179 - name : Cache PHPUnit's static analysis cache
180180 if : ${{ inputs.enable-artifact-upload }}
181- uses : actions/cache@v3
181+ uses : actions/cache@v4
182182 with :
183183 path : build/.phpunit.cache/code-coverage
184184 key : phpunit-code-coverage-${{ hashFiles('**/phpunit.*') }}
Original file line number Diff line number Diff line change 7979 echo "ARTIFACT_NAME=${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}" >> $GITHUB_ENV
8080
8181 - name : Cache Composer dependencies
82- uses : actions/cache@v3
82+ uses : actions/cache@v4
8383 with :
8484 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
8585 key : ${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}-${{ hashFiles('**/composer.*') }}
8989
9090 - name : Cache PHPUnit's static analysis cache
9191 if : ${{ inputs.enable-artifact-upload }}
92- uses : actions/cache@v3
92+ uses : actions/cache@v4
9393 with :
9494 path : build/.phpunit.cache/code-coverage
9595 key : phpunit-code-coverage-${{ hashFiles('**/phpunit.*') }}
Original file line number Diff line number Diff line change 4646 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
4747
4848 - name : Cache dependencies
49- uses : actions/cache@v3
49+ uses : actions/cache@v4
5050 with :
5151 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
5252 key : ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
Original file line number Diff line number Diff line change 5353 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
5454
5555 - name : Cache dependencies
56- uses : actions/cache@v3
56+ uses : actions/cache@v4
5757 with :
5858 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
5959 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
6363 run : mkdir -p build/
6464
6565 - name : Cache Deptrac results
66- uses : actions/cache@v3
66+ uses : actions/cache@v4
6767 with :
6868 path : build
6969 key : ${{ runner.os }}-deptrac-${{ github.sha }}
Original file line number Diff line number Diff line change 6363 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
6464
6565 - name : Cache dependencies
66- uses : actions/cache@v3
66+ uses : actions/cache@v4
6767 with :
6868 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
6969 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
7373 run : mkdir -p build/phpstan
7474
7575 - name : Cache PHPStan result cache directory
76- uses : actions/cache@v3
76+ uses : actions/cache@v4
7777 with :
7878 path : build/phpstan
7979 key : ${{ runner.os }}-phpstan-${{ github.sha }}
Original file line number Diff line number Diff line change 4444 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
4545
4646 - name : Cache composer dependencies
47- uses : actions/cache@v3
47+ uses : actions/cache@v4
4848 with :
4949 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
5050 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}-${{ hashFiles('**/composer.lock') }}
5454 run : mkdir -p build/psalm
5555
5656 - name : Cache Psalm results
57- uses : actions/cache@v3
57+ uses : actions/cache@v4
5858 with :
5959 path : build/psalm
6060 key : ${{ runner.os }}-psalm-${{ 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@v3
74+ uses : actions/cache@v4
7575 with :
7676 path : ${{ env.COMPOSER_CACHE_FILES_DIR }}
7777 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
You can’t perform that action at this time.
0 commit comments