chore(ci): upgrade actions to Node 24-compatible versions#16
Merged
Conversation
Bump within-range dependencies to latest: - @biomejs/biome 2.3.13 -> 2.5.0 - @clack/prompts 1.0.0 -> 1.6.0 - valibot 1.2.0 -> 1.4.1 - citty 0.2.0 -> 0.2.2 - @types/bun / bun-types 1.3.8 -> 1.3.14 Migrate biome.json to the 2.5.0 schema: `preset: "recommended"` replaces the now-deprecated `rules.recommended` field (no rule changes). typecheck, lint, test, build all pass.
Bump typescript ^5 -> ^6 (6.0.3). Used only for `tsc --noEmit`, so the blast radius is the typecheck step. No source changes were needed: typecheck, lint, test, build all pass on 6.0.3.
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
Two related maintenance changes, kept as separate commits:
CI — Node 24-compatible actions. Bumps
pnpm/action-setup(v5→v6) andsoftprops/action-gh-release(v2→v3) so no action runs on the deprecated Node 20 runtime (forced migration 2026-06-16, removal 2026-09-16). Version pins only, no behavior change.Dependency updates. Since we were already bumping versions:
@biomejs/biome2.3.13→2.5.0,@clack/prompts1.0.0→1.6.0,valibot1.2.0→1.4.1,citty0.2.0→0.2.2,@types/bun/bun-types1.3.8→1.3.14preset: "recommended"replaces the deprecatedrules.recommended; no rule changes)typescript^5→^6 (6.0.3) — used only fortsc --noEmit, no source changes neededTest plan
pnpm typecheckpassespnpm lintpassespnpm testpasses (465 tests)pnpm buildpassesThe Node 20 deprecation annotation this targets came from the release workflow (
workflow_dispatch-only), so it'll be confirmed on the next release rather than by this PR's CI.