Skip to content

Commit 065810b

Browse files
dependabot[bot]Hanmac
authored andcommitted
build(deps): bump actions/cache from 3 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...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 342da50 commit 065810b

File tree

11 files changed

+23
-23
lines changed

11 files changed

+23
-23
lines changed

.github/workflows/check-files.yml

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

8181
- name: Cache dependencies
82-
uses: actions/cache@v4
82+
uses: actions/cache@v5
8383
with:
8484
path: ${{ steps.composer-cache.outputs.dir }}
8585
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/composer.yml

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

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

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: 3.x
2828
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
2929

30-
- uses: actions/cache@v3
30+
- uses: actions/cache@v5
3131
with:
3232
key: mkdocs-material-${{ env.cache_id }}
3333
path: .cache

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

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

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

3636
- name: Restore result cache
37-
uses: actions/cache/restore@v4
37+
uses: actions/cache/restore@v5
3838
with:
3939
path: .php-cs-fixer.cache
4040
key: php-cs-fixer-result-cache-${{ github.run_id }}
@@ -45,7 +45,7 @@ jobs:
4545
run: php vendor/bin/php-cs-fixer fix --diff --dry-run
4646

4747
- name: Save result cache
48-
uses: actions/cache/save@v4
48+
uses: actions/cache/save@v5
4949
if: always()
5050
with:
5151
path: .php-cs-fixer.cache

.github/workflows/phpcs.yml

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

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

3636
- name: Restore result cache
37-
uses: actions/cache/restore@v4
37+
uses: actions/cache/restore@v5
3838
with:
3939
path: .phpcs.result.cache
4040
key: phpcs-result-cache-${{ github.run_id }}
@@ -45,7 +45,7 @@ jobs:
4545
run: php vendor/bin/phpcs -s -p --cache=.phpcs.result.cache --report=full --standard=.phpcs.dist.xml
4646

4747
- name: Save result cache
48-
uses: actions/cache/save@v4
48+
uses: actions/cache/save@v5
4949
if: always()
5050
with:
5151
path: .phpcs.result.cache

.github/workflows/phpmd.yml

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

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

3131
- name: Restore result cache
32-
uses: actions/cache/restore@v4
32+
uses: actions/cache/restore@v5
3333
with:
3434
path: .phpmd.result-cache.php
3535
key: phpmd-result-cache-${{ github.run_id }}
@@ -40,7 +40,7 @@ jobs:
4040
run: php vendor/bin/phpmd app/code/core/Mage/ github .phpmd.dist.xml --cache --baseline-file .phpmd.dist.baseline.xml
4141

4242
- name: Save result cache
43-
uses: actions/cache/save@v4
43+
uses: actions/cache/save@v5
4444
if: always()
4545
with:
4646
path: .phpmd.result-cache.php

.github/workflows/phpstan.yml

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

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

3535
- name: Restore result cache
36-
uses: actions/cache/restore@v4
36+
uses: actions/cache/restore@v5
3737
with:
3838
path: .phpstan.cache
3939
key: phpstan-result-cache-${{ github.run_id }}
@@ -44,7 +44,7 @@ jobs:
4444
run: XDEBUG_MODE=off php vendor/bin/phpstan.phar analyze
4545

4646
- name: Save result cache
47-
uses: actions/cache/save@v4
47+
uses: actions/cache/save@v5
4848
if: always()
4949
with:
5050
path: .phpstan.cache

.github/workflows/phpunit.yml

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

5555
- name: Cache dependencies
56-
uses: actions/cache@v4
56+
uses: actions/cache@v5
5757
with:
5858
path: ${{ steps.composer-cache.outputs.dir }}
5959
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -91,7 +91,7 @@ jobs:
9191
--skip_url_validation 'yes'
9292
9393
- name: Restore result cache
94-
uses: actions/cache/restore@v4
94+
uses: actions/cache/restore@v5
9595
with:
9696
path: .phpunit.result.cache
9797
key: phpunit-result-cache-${{ matrix.php-versions }}-${{ matrix.mysql-version }}-${{ github.run_id }}
@@ -102,7 +102,7 @@ jobs:
102102
run: php vendor/bin/phpunit --configuration .phpunit.dist.xml --testsuite Base,Error,Mage,Varien
103103

104104
- name: Save result cache
105-
uses: actions/cache/save@v4
105+
uses: actions/cache/save@v5
106106
if: always()
107107
with:
108108
path: .phpunit.result.cache

.github/workflows/rector.yml

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

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

3636
- name: Restore result cache
37-
uses: actions/cache/restore@v4
37+
uses: actions/cache/restore@v5
3838
with:
3939
path: .rector.result.cache
4040
key: rector-result-cache-${{ github.run_id }}
@@ -45,7 +45,7 @@ jobs:
4545
run: php vendor/bin/rector process --config .rector.php --dry-run
4646

4747
- name: Save result cache
48-
uses: actions/cache/save@v4
48+
uses: actions/cache/save@v5
4949
if: always()
5050
with:
5151
path: .rector.result.cache

.github/workflows/security-php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v6
2020

21-
- uses: actions/cache@v4
21+
- uses: actions/cache@v5
2222
id: cache-db
2323
with:
2424
path: ~/.symfony/cache

0 commit comments

Comments
 (0)