From 9311fdd7402526fd6030e87f5f9bb2d7971f6108 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 06:26:01 +0000 Subject: [PATCH 1/2] build(deps): bump changesets/action in the github-actions group Bumps the github-actions group with 1 update: [changesets/action](https://github.com/changesets/action). Updates `changesets/action` from 1 to 2 - [Release notes](https://github.com/changesets/action/releases) - [Changelog](https://github.com/changesets/action/blob/main/CHANGELOG.md) - [Commits](https://github.com/changesets/action/compare/v1...v2) --- updated-dependencies: - dependency-name: changesets/action dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5f0a35f..b992c0c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: - name: Create release pull request or publish to npm id: changesets - uses: changesets/action@v1 + uses: changesets/action@v2 with: version: npm run version-packages publish: npm run release From c3e08e8edc67971833bde18cadf35b4d38fc404a Mon Sep 17 00:00:00 2001 From: a-baran-orhan Date: Mon, 31 Aug 2026 23:16:12 +0300 Subject: [PATCH 2/2] ci: migrate release workflow to changesets/action v2 inputs changesets/action v2 renamed the root action inputs (version -> version-script, publish -> publish-script, commit -> commit-message, title -> pr-title, createGithubReleases -> create-github-releases) and no longer accepts the GITHUB_TOKEN environment variable as a substitute for the github-token input. --- .github/workflows/release.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b992c0c..58f1e57 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,11 +38,12 @@ jobs: id: changesets uses: changesets/action@v2 with: - version: npm run version-packages - publish: npm run release - commit: "chore: release packages" - title: "chore: release packages" - createGithubReleases: true + github-token: ${{ secrets.GITHUB_TOKEN }} + version-script: npm run version-packages + publish-script: npm run release + commit-message: "chore: release packages" + pr-title: "chore: release packages" + create-github-releases: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}