From 35f3971c830576238fdc5f70bbb55fd3f8f188e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Feb 2025 17:30:51 +0000 Subject: [PATCH] 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/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index be0156f..986fe30 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v4 - name: Cache PHP dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: '**/vendor' key: ${{ runner.os }}-vendor-cache-${{ hashFiles('**/composer.lock') }} @@ -28,7 +28,7 @@ jobs: ${{ runner.os }}-vendor-cache- - name: Cache Composer dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.composer/cache/files key: composer-${{ runner.os }}-php-${{ matrix.php }}-${{ hashFiles('composer.json') }}