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
6 changes: 3 additions & 3 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
github.event_name != 'push' ||
!startsWith(github.event.head_commit.message, 'chore: version packages')
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# Chromatic needs full git history to detect baselines and changes.
fetch-depth: 0
Expand All @@ -74,7 +74,7 @@ jobs:
version: 10.33.0

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 24.15.0
cache: pnpm
Expand All @@ -83,7 +83,7 @@ jobs:
run: pnpm install --frozen-lockfile

- name: Publish to Chromatic
uses: chromaui/action@v17
uses: chromaui/action@v18
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
# Skip waiting for the visual review to finish — GitHub Checks get
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
name: lint + typecheck + build + test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: 10.33.0

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 24.15.0
cache: pnpm
Expand Down Expand Up @@ -63,15 +63,15 @@ jobs:
name: story accessibility (axe)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: 10.33.0

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 24.15.0
cache: pnpm
Expand All @@ -84,7 +84,7 @@ jobs:
# version actually moves. Keeps this job cheap on every other run.
- name: Cache Playwright browsers
id: playwright-cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
Expand All @@ -103,15 +103,15 @@ jobs:
name: consumer harness (playwright e2e)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: 10.33.0

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 24.15.0
cache: pnpm
Expand All @@ -121,7 +121,7 @@ jobs:

- name: Cache Playwright browsers
id: playwright-cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
Expand All @@ -146,7 +146,7 @@ jobs:

- name: Upload Playwright report on failure
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: playwright-report
path: examples/saas-demo/playwright-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
app-id: ${{ secrets.RELEASE_APP_ID }}
private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
token: ${{ steps.app-token.outputs.token }}
fetch-depth: 0
Expand All @@ -39,7 +39,7 @@ jobs:
version: 10.33.0

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 24.15.0
cache: pnpm
Expand Down
Loading