From 1058a6076f5f61a5ea4a43febe51f9e7bc0c7dc0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 09:38:36 +0000 Subject: [PATCH 1/2] chore(deps): bump pnpm/action-setup from 4 to 6 Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup) from 4 to 6. - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v4...v6) --- updated-dependencies: - dependency-name: pnpm/action-setup dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/packages-preview.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ceecf5702d..c699bdf142 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: fetch-depth: 2 - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 with: version: 10.28.0 diff --git a/.github/workflows/packages-preview.yml b/.github/workflows/packages-preview.yml index 6e0adfb0c8..3aec8eef71 100644 --- a/.github/workflows/packages-preview.yml +++ b/.github/workflows/packages-preview.yml @@ -21,7 +21,7 @@ jobs: fetch-depth: 2 - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 with: version: 10.28.0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 648327cdba..4041ec9bdd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: fetch-depth: 2 - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 with: version: 10.28.0 From c9f56f4d162d02569e47a35576fdf15c6aa42d08 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Jun 2026 18:42:15 +0000 Subject: [PATCH 2/2] skip Chromatic step when CHROMATIC_PROJECT_TOKEN secret is not set --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c699bdf142..4ba1cd9400 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,6 +47,7 @@ jobs: run: pnpm test - name: Publish to Chromatic + if: ${{ secrets.CHROMATIC_PROJECT_TOKEN != '' }} uses: chromaui/action@v13.3.5 with: projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}