From 52aa624bb348f76dfd13cd39a7b10cd6f63ff104 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 10:00:01 +0000 Subject: [PATCH] chore(deps): bump actions/cache 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](https://github.com/actions/cache/compare/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] --- .github/actions/setup-php/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-php/action.yml b/.github/actions/setup-php/action.yml index 0afe3d77..3f4e3e4b 100644 --- a/.github/actions/setup-php/action.yml +++ b/.github/actions/setup-php/action.yml @@ -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') }} @@ -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 }}