From 2a501616ef7ae84355700aa71b1037eab2609c35 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 08:30:04 +0100 Subject: [PATCH] [DEP]: Bump actions/cache from 3 to 4 (#152) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/legacy-hook.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15d9845..c7bd1fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT} - name: Recover Composer caches - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock', '**/composer.json') }} @@ -54,7 +54,7 @@ jobs: ${{ runner.os }}-composer- - name: Recover npm caches - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache-dir.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -143,7 +143,7 @@ jobs: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT} - name: Recover Composer caches - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock', '**/composer.json') }} @@ -151,7 +151,7 @@ jobs: ${{ runner.os }}-composer- - name: Recover npm caches - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache-dir.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/legacy-hook.yml b/.github/workflows/legacy-hook.yml index 4c2409f..266aa99 100644 --- a/.github/workflows/legacy-hook.yml +++ b/.github/workflows/legacy-hook.yml @@ -41,7 +41,7 @@ jobs: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Recover Composer caches - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock', '**/composer.json') }} @@ -95,7 +95,7 @@ jobs: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Recover Composer caches - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock', '**/composer.json') }}