From 63199028c8d739facbf6de8c26b6374a4772cf5f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 7 Aug 2024 00:56:46 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/ci.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ef07500..31cf044 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,7 +26,7 @@ jobs: run: echo "::set-output name=dir::$(npm config get cache)" - name: Configure npm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} @@ -38,7 +38,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Configure Composer cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -69,7 +69,7 @@ jobs: run: echo "::set-output name=dir::$(npm config get cache)" - name: Configure npm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} @@ -81,7 +81,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Configure Composer cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -92,7 +92,7 @@ jobs: run: cd app && composer install --prefer-dist --optimize-autoloader --no-progress --no-interaction && cd - - name: Setup Jest cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.jest-cache key: ${{ runner.os }}-jest @@ -158,7 +158,7 @@ jobs: uses: actions/checkout@v3 - name: Cache Docker layers - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} @@ -170,7 +170,7 @@ jobs: run: echo "::set-output name=dir::$(npm config get cache)" - name: Configure npm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}