File tree Expand file tree Collapse file tree 9 files changed +16
-16
lines changed
Expand file tree Collapse file tree 9 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 5050 echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
5151
5252 - name : Cache dependencies
53- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
53+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
5454 with :
5555 path : ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
5656 key : ${{ github.job }}-php-${{ inputs.php-version }}-${{ hashFiles('**/composer.*') }}
5959 ${{ github.job }}-
6060
6161 - name : Cache PHPUnit's static analysis cache
62- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
62+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
6363 with :
6464 path : build/.phpunit.cache/code-coverage
6565 key : phpunit-code-coverage-${{ hashFiles('**/phpunit.*') }}
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ jobs:
200200 echo "ARTIFACT_NAME=${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}-db-${{ inputs.db-platform || 'none' }}${{ inputs.mysql-version || '' }}" >> $GITHUB_OUTPUT
201201
202202 - name : Cache dependencies
203- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
203+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
204204 with :
205205 path : ${{ steps.setup-env.outputs.COMPOSER_CACHE_FILES_DIR }}
206206 key : ${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}-db-${{ inputs.db-platform || 'none' }}-${{ hashFiles('**/composer.*') }}
@@ -211,7 +211,7 @@ jobs:
211211
212212 - name : Cache PHPUnit's static analysis cache
213213 if : ${{ inputs.enable-artifact-upload }}
214- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
214+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
215215 with :
216216 path : build/.phpunit.cache/code-coverage
217217 key : phpunit-code-coverage-${{ hashFiles('**/phpunit.*') }}
Original file line number Diff line number Diff line change 9595 echo "ARTIFACT_NAME=${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}" >> $GITHUB_OUTPUT
9696
9797 - name : Cache Composer dependencies
98- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
98+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
9999 with :
100100 path : ${{ steps.setup-env.outputs.COMPOSER_CACHE_FILES_DIR }}
101101 key : ${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}-${{ hashFiles('**/composer.*') }}
@@ -105,7 +105,7 @@ jobs:
105105
106106 - name : Cache PHPUnit's static analysis cache
107107 if : ${{ inputs.enable-artifact-upload }}
108- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
108+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
109109 with :
110110 path : build/.phpunit.cache/code-coverage
111111 key : phpunit-code-coverage-${{ hashFiles('**/phpunit.*') }}
Original file line number Diff line number Diff line change 5555 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
5656
5757 - name : Cache dependencies
58- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
58+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
5959 with :
6060 path : ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
6161 key : ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
Original file line number Diff line number Diff line change 6060 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
6161
6262 - name : Cache dependencies
63- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
63+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
6464 with :
6565 path : ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
6666 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
7070 run : mkdir -p build/
7171
7272 - name : Cache Deptrac results
73- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
73+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
7474 with :
7575 path : build
7676 key : ${{ runner.os }}-deptrac-${{ 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_OUTPUT
7373
7474 - name : Cache dependencies
75- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
75+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
7676 with :
7777 path : ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
7878 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
8282 run : mkdir -p build/phpstan
8383
8484 - name : Cache PHPStan result cache directory
85- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
85+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
8686 with :
8787 path : build/phpstan
8888 key : ${{ runner.os }}-phpstan-${{ github.sha }}
Original file line number Diff line number Diff line change 6161 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
6262
6363 - name : Cache composer dependencies
64- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
64+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
6565 with :
6666 path : ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
6767 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}-${{ hashFiles('**/composer.lock') }}
7171 run : mkdir -p build/psalm
7272
7373 - name : Cache Psalm results
74- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
74+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
7575 with :
7676 path : build/psalm
7777 key : ${{ runner.os }}-psalm-${{ github.sha }}
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ jobs:
182182 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
183183
184184 - name : Cache composer dependencies
185- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
185+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
186186 with :
187187 path : ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
188188 key : PHP_${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}
Original file line number Diff line number Diff line change 7878 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
7979
8080 - name : Cache dependencies
81- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
81+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
8282 with :
8383 path : ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
8484 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
8888 run : composer update --ansi --no-interaction ${{ matrix.composer-option }}
8989
9090 - name : Rector Cache
91- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
91+ uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
9292 with :
9393 path : /tmp/rector
9494 key : ${{ runner.os }}-rector-${{ github.run_id }}
You can’t perform that action at this time.
0 commit comments