Skip to content

Commit

Permalink
chore(deps): bump actions/cache
Browse files Browse the repository at this point in the history
Bumps the github-actions-dependencies group with 1 update in the /.github/actions/setup-php directory: [actions/cache](https://github.com/actions/cache).


Updates `actions/cache` from 3 to 4
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and neilime committed Jul 2, 2024
1 parent 31cef08 commit 52aa624
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-php/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT"

- name: ♻️ Cache composer dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
Expand All @@ -33,7 +33,7 @@ runs:
composer --working-dir=tools install --no-progress --prefer-dist --optimize-autoloader
- name: ♻️ Tools cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: tools/cache
key: ${{ runner.os }}-tools-${{ github.sha }}
Expand Down

0 comments on commit 52aa624

Please sign in to comment.