From 9a810d758184a3dcfba2ca8e29da79568bb3805f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 21:38:39 +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/magento_platform_tests.yml | 2 +- .github/workflows/phar_build_and_update.yml | 2 +- .github/workflows/pr_build.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/magento_platform_tests.yml b/.github/workflows/magento_platform_tests.yml index 999f9bdc..fbbdbca8 100644 --- a/.github/workflows/magento_platform_tests.yml +++ b/.github/workflows/magento_platform_tests.yml @@ -198,7 +198,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" - name: Cache Dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: "${{ runner.os }}-php-${{ matrix.php-version }}-composer-${{ hashFiles('composer.lock') }}" diff --git a/.github/workflows/phar_build_and_update.yml b/.github/workflows/phar_build_and_update.yml index 388be887..f255a107 100644 --- a/.github/workflows/phar_build_and_update.yml +++ b/.github/workflows/phar_build_and_update.yml @@ -56,7 +56,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" shell: bash - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/pr_build.yml b/.github/workflows/pr_build.yml index 6e6b3855..bb8638c9 100644 --- a/.github/workflows/pr_build.yml +++ b/.github/workflows/pr_build.yml @@ -38,7 +38,7 @@ jobs: run: echo "dir=\"$(composer config cache-files-dir)\"" >> "$GITHUB_ENV" shell: bash - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}