diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 1b2179df..adbefefe 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -37,7 +37,7 @@ jobs: run: | echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0f8747c..3950f26e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: - name: Prepare Node Modules Cache id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ steps.pnpm-cache.outputs.STORE_PATH }} @@ -76,7 +76,7 @@ jobs: echo "composer-files-dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Prepare Composer Dependencies Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ steps.composer-cache.outputs.composer-files-dir }} @@ -118,7 +118,7 @@ jobs: - name: Prepare Node Modules Cache id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ steps.pnpm-cache.outputs.STORE_PATH }} @@ -137,7 +137,7 @@ jobs: run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - name: Prepare Composer Dependencies Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{needs.build.outputs.composer-files-dir}} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 056ceff8..05552cb3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -49,13 +49,13 @@ jobs: - name: Prepare Node Modules Cache id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-node-modules-${{ hashFiles('**/pnpm-lock.yaml') }} - name: Prepare Composer Dependencies Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ steps.composer-cache.outputs.composer-files-dir }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7e4fd5c0..a613dbe3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: run: | echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}