Skip to content

Commit cdd8c46

Browse files
Update actions/cache action to v6
| datasource | package | from | to | | ----------- | ------------- | ------ | ------ | | github-tags | actions/cache | v5.1.0 | v6.1.0 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent d6839ac commit cdd8c46

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/format_php.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,23 @@ jobs:
3636
echo "::set-output name=dir::$(composer config cache-files-dir)"
3737
3838
- name: Retrieve Composer’s cache
39-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
39+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
4343
restore-keys: |
4444
${{ runner.os }}-composer-
4545
4646
- name: Retrieve PHP-CS-Fixer’s cache
47-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
47+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
4848
with:
4949
path: .php-cs-fixer.cache
5050
key: ${{ runner.os }}-php-cs-fixer-${{ hashFiles('.php-cs-fixer.php') }}
5151
restore-keys: |
5252
${{ runner.os }}-php-cs-fixer-
5353
5454
- name: Retrieve PHPCS’s cache
55-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
55+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
5656
with:
5757
path: .phpcs.cache
5858
key: ${{ runner.os }}-phpcs-${{ hashFiles('phpcs.xml') }}

.github/workflows/psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
coverage: none
2121

2222
- name: Cache composer dependencies
23-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
23+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
2424
with:
2525
path: vendor
2626
key: composer-${{ hashFiles('composer.json') }}

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
node-version: 24
6161

6262
- name: Cache yarn dependencies
63-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
63+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
6464
id: npm-node_modules-cache
6565
with:
6666
path: node_modules

0 commit comments

Comments
 (0)