Skip to content

Commit d32681d

Browse files
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] <support@github.com>
1 parent 5ea8f5d commit d32681d

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/php-cs-fixer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2222

2323
- name: Cache dependencies
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
with:
2626
path: ${{ steps.composer-cache.outputs.dir }}
2727
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/phpmd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
1717

1818
- name: Cache dependencies
19-
uses: actions/cache@v4
19+
uses: actions/cache@v5
2020
with:
2121
path: ${{ steps.composer-cache.outputs.dir }}
2222
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/phpstan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2121

2222
- name: Cache dependencies
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
with:
2525
path: ${{ steps.composer-cache.outputs.dir }}
2626
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -30,7 +30,7 @@ jobs:
3030
run: composer install --prefer-dist --no-progress --ignore-platform-req=ext-*
3131

3232
- name: Restore result cache
33-
uses: actions/cache/restore@v4
33+
uses: actions/cache/restore@v5
3434
with:
3535
path: .phpstan.cache
3636
key: phpstan-result-cache-${{ github.run_id }}
@@ -41,7 +41,7 @@ jobs:
4141
run: XDEBUG_MODE=off php vendor/bin/phpstan.phar analyze
4242

4343
- name: Save result cache
44-
uses: actions/cache/save@v4
44+
uses: actions/cache/save@v5
4545
if: always()
4646
with:
4747
path: .phpstan.cache

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2727

2828
- name: Cache dependencies
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: ${{ steps.composer-cache.outputs.dir }}
3232
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/rector.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2222

2323
- name: Cache dependencies
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
with:
2626
path: ${{ steps.composer-cache.outputs.dir }}
2727
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -31,7 +31,7 @@ jobs:
3131
run: composer install --prefer-dist --no-progress --ignore-platform-req=ext-*
3232

3333
- name: Restore result cache
34-
uses: actions/cache/restore@v4
34+
uses: actions/cache/restore@v5
3535
with:
3636
path: .rector.result.cache
3737
key: rector-result-cache-${{ github.run_id }}
@@ -42,7 +42,7 @@ jobs:
4242
run: php vendor/bin/rector process --config .rector.php --dry-run
4343

4444
- name: Save result cache
45-
uses: actions/cache/save@v4
45+
uses: actions/cache/save@v5
4646
if: always()
4747
with:
4848
path: .rector.result.cache

0 commit comments

Comments
 (0)