Skip to content

fix: replace deprecated ::set-output in release workflow #694

Description

@rodet

The release workflow uses the deprecated ::set-output syntax (removed in newer GitHub Actions runner versions) to read the Node.js version from .nvmrc.

File: .github/workflows/release.yml, line 32

Current:

run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)

Fix:

run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT

See GitHub docs.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Fields

No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions