File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -84,21 +84,17 @@ jobs:
8484 uses : actions/cache@v4
8585 with :
8686 path : vendor
87- key : ${{ runner.os }}-${{ matrix.php-version }}-php-${{ hashFiles('**/composer.json') }}
88- restore-keys : |
89- ${{ runner.os }}-${{ matrix.php-version }}-php-
87+ key : ${{ runner.os }}-${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}
9088 - name : Cache test tools
9189 id : test-tools-cache
9290 uses : actions/cache@v4
9391 with :
9492 path : vendor-bin
95- key : ${{ runner.os }}-${{ matrix.php-version }}-php-${{ hashFiles('**/composer.json') }}
96- restore-keys : |
97- ${{ runner.os }}-${{ matrix.php-version }}-php-
93+ key : ${{ runner.os }}-${{ matrix.php-version }}-tools-${{ hashFiles('**/composer.json') }}
9894
9995 - name : Install dependencies
10096 id : composer
101- # if: steps.composer-cache.outputs.cache-hit != 'true' || steps.test-tools-cache.outputs.cache-hit != 'true'
97+ if : steps.composer-cache.outputs.cache-hit != 'true' || steps.test-tools-cache.outputs.cache-hit != 'true'
10298 run : composer install --prefer-dist --no-progress ${{ matrix.composer_args }}
10399
104100 - name : Check Style
You can’t perform that action at this time.
0 commit comments