Skip to content

Commit 2459b20

Browse files
chore(deps): bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent b992c3b commit 2459b20

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.github/workflows/reusable-coveralls.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
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.*') }}
@@ -52,7 +52,7 @@ jobs:
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.*') }}

.github/workflows/reusable-phpunit-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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.*') }}

.github/workflows/reusable-serviceless-phpunit-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
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.*') }}
@@ -95,7 +95,7 @@ jobs:
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.*') }}

.github/workflows/test-coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
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') }}

.github/workflows/test-deptrac.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
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') }}
@@ -69,7 +69,7 @@ jobs:
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 }}

.github/workflows/test-phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
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') }}
@@ -81,7 +81,7 @@ jobs:
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 }}

.github/workflows/test-psalm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
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') }}
@@ -59,7 +59,7 @@ jobs:
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 }}

.github/workflows/test-rector.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
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') }}
@@ -82,7 +82,7 @@ jobs:
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 }}

0 commit comments

Comments
 (0)