diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 06a7649..b16d778 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -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 @@ -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 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5a6508..c850a9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ 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 @@ -63,7 +63,7 @@ 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 @@ -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') }} @@ -103,7 +103,7 @@ 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 @@ -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') }} @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 611764d..0655bf3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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