Description
Bumps actions/setup-node from v2 to v3.
Release notes
Sourced from actions/setup-node
's releases.
v3.5.1
Update @actions/core and Print Node, Npm, Yarn versions
In scope of this release we updated actions/core to 1.10.0. Moreover, we added logic to print Nodejs, Npm, Yarn versions after installation.
v3.5.0
Add support for engines.node and Volta
In scope of this release we add support for engines.node. The action will be able to grab the version form package.json#engines.node. #485. Moreover, we added support for Volta
Besides, we updated @actions/core to 1.9.1 and @actions/cache to 3.0.4
v3.4.1
Fix pnpm output and node-version output issues
In scope of this release we fixed bugs related to the pnpm 7.5.1 output issue from
pnpm store path
#545. Moreover we fixed the issue with falling on node-version output #540.v3.4.0
Add support for asdf format and update actions/cache version to 3.0.0
In scope of this release we updated
actions/cache
package as the new version contains fixes for caching error handling. Moreover, we added support for asdf format as Node.js version file #373. Besides, we introduced new output node-version and addednpm-shrinkwrap.json
to dependency file patterns: #439v3.3.0
Add support for lts/-n aliases
In scope of this release we added support for
lts/-n
aliases, improve logic forcurrent
,latest
andnode
aliases to handle them fromtoolcache
, updatencc
package.Support of lts/-n aliases
steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: lts/-1 - run: npm ci - run: npm testMinor improvements
v3.2.0
Add current, node, latest aliases
In scope of this release we added new aliases to install the latest Node.js version. #483
steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: current - run: npm ci - run: npm testv3.1.1
Update actions/cache version to 2.0.2
In scope of this release we updated
actions/cache
package as the new version contains fixes related to GHES 3.5 (#460)v3.1.0
Add caching support on GHES 3.5
In scope of this release we added support for caching from GHES 3.5 and fixed download issue for files > 2GB during restore. Besides, we updated
actions/cache
dependency to 2.0.0 version.v3.0.0
v3.0.0
In scope of this release we changed version of the runtime Node.js for the setup-node action and updated package-lock.json file to v2.
Breaking Changes
- With the update to Node 16 in #414, all scripts will now be run with Node 16 rather than Node 12.
We removed deprecatedversion
input (#424). Please usenode-version
input instead.Full Changelog: actions/setup-node@v3.0.0...v3.5.1