Skip to content

Commit d87f05e

Browse files
chore(deps): bump actions/cache from 5.0.5 to 6.1.0
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.5 to 6.1.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@27d5ce7...55cc834) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 7f5e7a2 commit d87f05e

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/format-and-build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,44 +27,44 @@ jobs:
2727
with:
2828
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
2929
- name: Cache Composer package downloads
30-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
30+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
3131
with:
3232
path: ~/.composer/cache/files
3333
key: composer-files-${{ hashFiles('composer.json') }}
3434
restore-keys: |
3535
composer-files-
3636
- name: Cache vendor
3737
id: vendor-cache
38-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
38+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
3939
with:
4040
path: vendor
4141
key: vendor-${{ runner.os }}-${{ hashFiles('composer.lock') }}
4242
- name: Cache node_modules
4343
id: node-modules-cache
44-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
44+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
4545
with:
4646
path: node_modules
4747
key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
4848
- name: Cache Pint cache
4949
# SHA in primary key always saves a fresh cache. Restore-keys fall back only
5050
# within the same composer.lock hash so a composer update invalidates the cache.
51-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
51+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
5252
with:
5353
path: .pint.cache
5454
key: pint-${{ github.ref_name }}-${{ hashFiles('composer.lock') }}-${{ github.sha }}
5555
restore-keys: |
5656
pint-${{ github.ref_name }}-${{ hashFiles('composer.lock') }}-
5757
- name: Cache Prettier cache
5858
# Same pattern, keyed on package-lock.json so an npm install invalidates the cache.
59-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
59+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
6060
with:
6161
path: .prettiercache
6262
key: prettier-${{ github.ref_name }}-${{ hashFiles('package-lock.json') }}-${{ github.sha }}
6363
restore-keys: |
6464
prettier-${{ github.ref_name }}-${{ hashFiles('package-lock.json') }}-
6565
- name: Cache Rector cache
6666
# Same pattern as Pint; rector.php sets cacheDirectory to .rector.cache.
67-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
67+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
6868
with:
6969
path: .rector.cache
7070
key: rector-${{ github.ref_name }}-${{ hashFiles('composer.lock') }}-${{ github.sha }}

.github/workflows/phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
with:
3434
persist-credentials: false
3535
- name: Cache Composer dependencies
36-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
36+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
3737
with:
3838
path: ~/.composer/cache/files
3939
key: composer-${{ matrix.php }}-${{ matrix.laravel }}-${{ hashFiles('composer.json') }}
4040
restore-keys: |
4141
composer-${{ matrix.php }}-${{ matrix.laravel }}-
4242
composer-${{ matrix.php }}-
4343
- name: Cache PHPStan result
44-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
44+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
4545
with:
4646
path: /tmp/phpstan
4747
key: phpstan-${{ matrix.php }}-${{ matrix.laravel }}-${{ github.sha }}

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
with:
8787
persist-credentials: false
8888
- name: Cache Composer dependencies
89-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
89+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
9090
with:
9191
path: ~/.composer/cache/files
9292
key: composer-${{ matrix.php }}-${{ matrix.laravel }}-${{ hashFiles('composer.json') }}
@@ -114,7 +114,7 @@ jobs:
114114
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends libnss3 libatk-bridge2.0-0 libdrm2 libxcomposite1 libxdamage1 libxrandr2 libgbm1 libxkbcommon0 libpango-1.0-0 libcairo2 libasound2t64
115115
- name: Cache Playwright Chromium
116116
id: playwright-cache
117-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
117+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
118118
with:
119119
path: ~/.cache/ms-playwright
120120
key: playwright-chromium-${{ runner.os }}-${{ hashFiles('package-lock.json') }}

0 commit comments

Comments
 (0)