Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
# Try to restore from cache first
- name: Restore packages cache
id: check-cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
with:
path: |
packages/*/dist
Expand All @@ -94,7 +94,7 @@ jobs:
# Save to cache if we built
- name: Save packages cache
if: steps.check-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v6
with:
path: |
packages/*/dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

# Cache Turborepo build outputs
- name: Setup Turborepo cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
.turbo
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ jobs:

# Cache Turborepo outputs for faster builds
- name: Cache Turborepo
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.sha }}
Expand All @@ -418,7 +418,7 @@ jobs:
# Cache framework-specific build outputs
- name: Cache Next.js builds
if: steps.config.outputs.app-type == 'nextjs'
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
apps/${{ matrix.folder }}/.next/cache
Expand All @@ -435,7 +435,7 @@ jobs:

- name: Cache Vite builds
if: steps.config.outputs.app-type == 'vite'
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
apps/${{ matrix.folder }}/dist
Expand Down Expand Up @@ -475,7 +475,7 @@ jobs:
# Fallback restore-key covers the edge case where build-packages was skipped
# (e.g. workflow_dispatch without build-packages running).
- name: Restore cached packages
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
with:
path: |
packages/*/dist
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ jobs:
run: pnpm install --frozen-lockfile --ignore-scripts=false

- name: Cache Turborepo
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.sha }}
Expand All @@ -324,7 +324,7 @@ jobs:

- name: Cache Next.js builds
if: steps.config.outputs.app-type == 'nextjs'
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
apps/${{ matrix.folder }}/.next/cache
Expand All @@ -341,7 +341,7 @@ jobs:

- name: Cache Vite builds
if: steps.config.outputs.app-type == 'vite'
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
apps/${{ matrix.folder }}/dist
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
echo "📦 Cache key: ${CACHE_KEY}"

- name: Restore cached packages
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
with:
path: |
packages/*/dist
Expand Down
Loading