chore: DEVPLAT-7373 fix Node.js 20 deprecated GitHub Actions#377
chore: DEVPLAT-7373 fix Node.js 20 deprecated GitHub Actions#377kristianmills wants to merge 6 commits intomainfrom
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 3e0e42b. Configure here.
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| with: | ||
| semantic_version: 19 | ||
| semantic_version: 24 |
There was a problem hiding this comment.
Outdated plugin versions incompatible with semantic-release v24
High Severity
The semantic_version was bumped from 19 to 24, but the extra_plugins still pin old plugin versions. Specifically, @semantic-release/github@8 is incompatible with semantic-release v24 — v11+ is required to support the new warn logger function introduced in v24.1.0. Similarly, @semantic-release/changelog@6 and @semantic-release/git@10 are years-old versions that predate semantic-release v24 and may have peer dependency or runtime incompatibilities. This will likely cause the release workflow to fail.
Reviewed by Cursor Bugbot for commit 3e0e42b. Configure here.
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| with: | ||
| semantic_version: 19 | ||
| semantic_version: 24 |
There was a problem hiding this comment.
semantic-release v24 requires Node.js 22+ but workflow uses 16
High Severity
The semantic_version was bumped from 19 to 24, but the workflow's node-version remains '16' (line 21). semantic-release v24 requires "node": "^22.14.0 || >= 24.10.0" per its engines field. Node.js 16 is far below this minimum, so the release step will fail immediately at runtime. The node-version needs to be updated to at least 22.14.0 for semantic_version: 24 to work.
Reviewed by Cursor Bugbot for commit 3e0e42b. Configure here.


Summary
Upgrades GitHub Actions that use the deprecated Node.js 20 runtime to Node.js 24 compatible versions.
Node.js 20 actions will be forced to run on Node.js 24 by default starting June 2nd, 2026. See the GitHub deprecation notice.
Changes made:
amannn/action-semantic-pull-request@v5→amannn/action-semantic-pull-request@v6cycjimmy/semantic-release-action@v3→cycjimmy/semantic-release-action@v5🤖 Generated with Claude Code
DEVPLAT-7373
Note
Low Risk
Low risk: CI-only changes that primarily bump GitHub Action versions; main impact is potential workflow behavior differences in updated actions/semantic-release.
Overview
Updates CI workflows to newer, Node.js 24-compatible GitHub Actions versions.
release-on-merge.ymlupgradespnpm/action-setupandcycjimmy/semantic-release-actionand bumpssemantic-releasefrom 19 to 24.test-on-pull-request.ymlpinsactions/checkoutto the PR head ref and upgradespnpm/action-setupplusstefanzweifel/git-auto-commit-action.validate-pr-title.ymlupgradesamannn/action-semantic-pull-requestto v6.Reviewed by Cursor Bugbot for commit 3e0e42b. Bugbot is set up for automated code reviews on this repo. Configure here.