File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4343 echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
4444
4545 - name : Cache dependencies
46- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
46+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
4747 with :
4848 path : ${{ steps.composer-cache.outputs.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@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
55+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
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 @@ -192,7 +192,7 @@ jobs:
192192 echo "ARTIFACT_NAME=${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}-db-${{ inputs.db-platform || 'none' }}${{ inputs.mysql-version || '' }}" >> $GITHUB_OUTPUT
193193
194194 - name : Cache dependencies
195- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
195+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
196196 with :
197197 path : ${{ steps.setup-env.outputs.COMPOSER_CACHE_FILES_DIR }}
198198 key : ${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}-db-${{ inputs.db-platform || 'none' }}-${{ hashFiles('**/composer.*') }}
@@ -203,7 +203,7 @@ jobs:
203203
204204 - name : Cache PHPUnit's static analysis cache
205205 if : ${{ inputs.enable-artifact-upload }}
206- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
206+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
207207 with :
208208 path : build/.phpunit.cache/code-coverage
209209 key : phpunit-code-coverage-${{ hashFiles('**/phpunit.*') }}
Original file line number Diff line number Diff line change 8989 echo "ARTIFACT_NAME=${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}" >> $GITHUB_OUTPUT
9090
9191 - name : Cache Composer dependencies
92- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
92+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
9393 with :
9494 path : ${{ steps.setup-env.outputs.COMPOSER_CACHE_FILES_DIR }}
9595 key : ${{ inputs.job-id || github.job }}-php-${{ inputs.php-version }}-${{ hashFiles('**/composer.*') }}
9999
100100 - name : Cache PHPUnit's static analysis cache
101101 if : ${{ inputs.enable-artifact-upload }}
102- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
102+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
103103 with :
104104 path : build/.phpunit.cache/code-coverage
105105 key : phpunit-code-coverage-${{ hashFiles('**/phpunit.*') }}
Original file line number Diff line number Diff line change 4949 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
5050
5151 - name : Cache dependencies
52- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
52+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
5353 with :
5454 path : ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
5555 key : ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
Original file line number Diff line number Diff line change 6666 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
6767
6868 - name : Cache dependencies
69- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
69+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
7070 with :
7171 path : ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
7272 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
7676 run : mkdir -p build/phpstan
7777
7878 - name : Cache PHPStan result cache directory
79- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
79+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
8080 with :
8181 path : build/phpstan
8282 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_OUTPUT
5555
5656 - name : Cache composer dependencies
57- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
57+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
5858 with :
5959 path : ${{ steps.composer-cache.outputs.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@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
67+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
6868 with :
6969 path : build/psalm
7070 key : ${{ runner.os }}-psalm-${{ github.sha }}
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ jobs:
186186 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
187187
188188 - name : Cache composer dependencies
189- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
189+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
190190 with :
191191 path : ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
192192 key : PHP_${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}
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@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
75+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
7676 with :
7777 path : ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
7878 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
8282 run : composer update --ansi --no-interaction ${{ matrix.composer-option }}
8383
8484 - name : Rector Cache
85- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
85+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
8686 with :
8787 path : /tmp/rector
8888 key : ${{ runner.os }}-rector-${{ github.run_id }}
Original file line number Diff line number Diff line change 6868 run : echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
6969
7070 - name : Cache dependencies
71- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
71+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
7272 with :
7373 path : ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
7474 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
7878 run : composer update --ansi --no-interaction
7979
8080 - name : Structarmed Cache
81- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 .0.5
81+ uses : actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6 .0.0
8282 with :
8383 path : /tmp/structarmed
8484 key : ${{ runner.os }}-structarmed-${{ github.run_id }}
You can’t perform that action at this time.
0 commit comments