From f750e6524e664485849972a63125a23db41a14ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 15:04:44 +0000 Subject: [PATCH] GitHub Actions(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/validate-php.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validate-php.yml b/.github/workflows/validate-php.yml index 43e5454..fbc3d9e 100644 --- a/.github/workflows/validate-php.yml +++ b/.github/workflows/validate-php.yml @@ -16,7 +16,7 @@ jobs: - name: Get Composer dependencies id: cache-vendor - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: vendor key: ${{ runner.os }}-vendor-dev-${{ hashFiles('**/composer.lock') }} @@ -35,7 +35,7 @@ jobs: - name: Get Composer dependencies id: get-vendor-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: vendor key: ${{ runner.os }}-vendor-dev-${{ hashFiles('**/composer.lock') }} @@ -58,7 +58,7 @@ jobs: - name: Get Composer dependencies id: get-vendor-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: vendor key: ${{ runner.os }}-vendor-dev-${{ hashFiles('**/composer.lock') }}