diff --git a/.github/actions/install-playwright/action.yml b/.github/actions/install-playwright/action.yml index 8ca47ce04081..ec6ae171e925 100644 --- a/.github/actions/install-playwright/action.yml +++ b/.github/actions/install-playwright/action.yml @@ -18,7 +18,7 @@ runs: working-directory: ${{ inputs.cwd }} - name: Restore cached playwright binaries - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: playwright-cache with: path: | @@ -43,7 +43,7 @@ runs: # Only store cache on develop branch - name: Store cached playwright binaries - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: github.event_name == 'push' && github.ref == 'refs/heads/develop' with: path: | diff --git a/.github/actions/restore-cache/action.yml b/.github/actions/restore-cache/action.yml index 7e7a3971cd7e..1d5126fbe952 100644 --- a/.github/actions/restore-cache/action.yml +++ b/.github/actions/restore-cache/action.yml @@ -11,13 +11,13 @@ runs: steps: - name: Check dependency cache id: dep-cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} key: ${{ inputs.dependency_cache_key }} - name: Restore build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: build-output