From e2b725bd0c50ea2865a4a14a700ec663028f78cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 05:22:02 +0000 Subject: [PATCH] Build(deps): bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9817cdb458..4b9afeb572 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -90,7 +90,7 @@ jobs: - name: Cache extensions 5.3 - 5.6 if: matrix.php < '7.0' - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.cache-env-php5.outputs.dir }} key: ${{ steps.cache-env-php5.outputs.key }} @@ -98,7 +98,7 @@ jobs: - name: Cache extensions 7.0 - 8.0 if: matrix.php >= '7.0' - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.cache-env-php7.outputs.dir }} key: ${{ steps.cache-env-php7.outputs.key }} @@ -121,7 +121,7 @@ jobs: run: echo "COMPOSER_CACHE_DIR=~\AppData\Local\Composer" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - name: Cache dependencies installed with composer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ env.COMPOSER_CACHE_DIR }} key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}