Skip to content

Commit 5f6ff65

Browse files
dependabot[bot]norberttech
authored andcommitted
build(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 a0f232b commit 5f6ff65

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/job-mutation-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: "mkdir -p var/infection/cache"
3333

3434
- name: "Cache infection results"
35-
uses: "actions/cache@v4"
35+
uses: "actions/cache@v5"
3636
with:
3737
path: "var/infection/cache"
3838
key: "php-${{ matrix.php-version }}-infection-cache-${{ hashFiles('infection.json', 'tools/infection/phpunit.xml', 'composer.lock') }}"

.github/workflows/job-static-analyze.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
mkdir -p var/phpstan/cache
3333
3434
- name: "Cache cs-fixer results"
35-
uses: "actions/cache@v4"
35+
uses: "actions/cache@v5"
3636
with:
3737
path: "var/cs-fixer"
3838
key: "php-${{ matrix.php-version }}-cache-cs-fixer-${{ github.run_id }}"
3939
restore-keys: |
4040
php-${{ matrix.php-version }}-cache-cs-fixer-
4141
4242
- name: "Cache phpstan results"
43-
uses: "actions/cache@v4"
43+
uses: "actions/cache@v5"
4444
with:
4545
path: "var/phpstan/cache"
4646
key: "php-${{ matrix.php-version }}-cache-phpstan-${{ github.run_id }}"

.github/workflows/job-windows-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
echo "dir=$(composer config cache-files-dir)" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
3838
3939
- name: "Cache Composer dependencies"
40-
uses: "actions/cache@v4"
40+
uses: "actions/cache@v5"
4141
with:
4242
path: "${{ steps.composer-cache.outputs.dir }}"
4343
key: "php-${{ matrix.php-version }}-${{ matrix.dependencies }}-composer-windows-${{ hashFiles('**/composer.lock') }}"

0 commit comments

Comments
 (0)