Skip to content

Commit b8edde5

Browse files
chore(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 9c45989 commit b8edde5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
php-version: "${{ matrix.php-version }}"
3232

3333
- name: "Cache dependencies"
34-
uses: "actions/cache@v4"
34+
uses: "actions/cache@v5"
3535
with:
3636
path: "~/.composer/cache"
3737
key: "php-${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"

.github/workflows/code_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
id: composer-cache
2121
run: |
2222
echo "::set-output name=dir::$(composer config cache-files-dir)"
23-
- uses: actions/cache@v4
23+
- uses: actions/cache@v5
2424
with:
2525
path: ${{ steps.composer-cache.outputs.dir }}
2626
key: ${{ runner.os }}-php8.3-composer-${{ hashFiles('**/composer.json') }}

0 commit comments

Comments
 (0)