Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@ on:
description: Version of semantic-release to install (passed to cycjimmy/semantic-release-action).
required: false
type: string
default: '24'
# NOTE: semantic-release v25 raised the Node floor — it requires Node >= 22.14,
# and on the Node 24 line specifically >= 24.10.0. The `node-version` default
# below ('24') resolves to the latest 24.x on ubuntu-latest, which satisfies this.
# Any caller that overrides `node-version` to an older release (e.g. '20', or a
# 22.x below 22.14) will fail to run semantic-release. Confirm callers before
# relying on this default.
default: '25'
extra-plugins:
description: Extra semantic-release plugins to install, newline- or space-separated. Defaults to the common Refokus set (@semantic-release/changelog, @semantic-release/git, @semantic-release/exec).
required: false
Expand Down