Skip to content

chore: DEVPLAT-7373 fix Node.js 20 deprecated GitHub Actions#377

Open
kristianmills wants to merge 6 commits intomainfrom
kristianm/node20-deprecated-actions
Open

chore: DEVPLAT-7373 fix Node.js 20 deprecated GitHub Actions#377
kristianmills wants to merge 6 commits intomainfrom
kristianm/node20-deprecated-actions

Conversation

@kristianmills
Copy link
Copy Markdown
Contributor

@kristianmills kristianmills commented Apr 29, 2026

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@v5amannn/action-semantic-pull-request@v6
  • cycjimmy/semantic-release-action@v3cycjimmy/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.yml upgrades pnpm/action-setup and cycjimmy/semantic-release-action and bumps semantic-release from 19 to 24.

test-on-pull-request.yml pins actions/checkout to the PR head ref and upgrades pnpm/action-setup plus stefanzweifel/git-auto-commit-action.

validate-pr-title.yml upgrades amannn/action-semantic-pull-request to v6.

Reviewed by Cursor Bugbot for commit 3e0e42b. Bugbot is set up for automated code reviews on this repo. Configure here.

Copy link
Copy Markdown

@cursor cursor Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 2 potential issues.

Fix All in Cursor

❌ 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
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 3e0e42b. Configure here.

GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
semantic_version: 19
semantic_version: 24
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 3e0e42b. Configure here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

1 participant