fix(ci): bump actions to v5 + delete stale changeset-release branch - #36
Merged
Conversation
- Bump actions/checkout v4 → v5 (fixes Node.js 20 deprecation warning) - Bump actions/setup-node v4 → v5 - Pin changesets/action to v1.9.0 (latest stable) - Deleted stale changeset-release/main branch that caused 'No commits' error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes two CI issues reported by GitHub:
Changesets "No commits" error — a stale
changeset-release/mainbranch existed with no diff tomain, causing the changesets action to fail when trying to create a version PR. Deleted the stale branch and pinnedchangesets/actiontov1.9.0.Node.js 20 deprecation warning —
actions/checkout@v4andactions/setup-node@v4use Node.js 20 internally, which is deprecated. Bumped both tov5.Changes
.github/workflows/ci.yml—actions/checkout@v4→@v5,actions/setup-node@v4→@v5.github/workflows/release.yml— same action bumps +changesets/action@v1→@v1.9.0changeset-release/mainbranch on GitHubVerification
CI will run on this PR to verify.