Skip to content

Releases: actions/setup-node

v4.0.2

07 Feb 04:51
60edb5d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v4.0.1...v4.0.2

v4.0.1

18 Dec 11:05
b39b52d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v4...v4.0.1

v4.0.0

23 Oct 14:55
8f152de
Compare
Choose a tag to compare

What's Changed

In scope of this release we changed version of node runtime for action from node16 to node20 and updated dependencies in #866

Besides, release contains such changes as:

New Contributors

Full Changelog: v3...v4.0.0

v3.8.2

23 Oct 13:09
1a4442c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3...v3.8.2

v3.8.1

17 Aug 13:14
5e21ff4
Compare
Choose a tag to compare

What's Changed

In scope of this release, the filter was removed within the cache-save step by @dmitry-shibanov in #831. It is filtered and checked in the toolkit/cache library.

Full Changelog: v3...v3.8.1

v3.8.0

14 Aug 10:20
bea5baf
Compare
Choose a tag to compare

What's Changed

Bug fixes:

Feature implementations:

  • feat: handling the case where "node" is used for tool-versions file. by @xytis in #812

Documentation changes:

Update dependencies:

New Contributors

Full Changelog: v3...v3.8.0

v3.7.0

05 Jul 14:27
e33196f
Compare
Choose a tag to compare

What's Changed

In scope of this release we added a logic to save an additional cache path for yarn 3 (related pull request and feature request). Moreover, we added functionality to use all the sub directories derived from cache-dependency-path input and add detect all dependencies directories to cache (related pull request and feature request).

Besides, we made such changes as:

New Contributors

Full Changelog: v3...v3.7.0

Update @actions/core for v2

27 Mar 11:41
7c12f80
Compare
Choose a tag to compare

In scope of this release we updated actions/core to 1.10.0 and actions/tool-cache to 1.7.2 for v2: #713

Add Support for Nightly, Canary and RC builds for Node.js

05 Jan 14:09
64ed1c7
Compare
Choose a tag to compare

In scope of this release we added support to download nightly, rc (#611) and canary (#619) Node.js distributions.

For nightly versions:

jobs:
  build:
    runs-on: ubuntu-latest
    name: Node sample
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '16-nightly'
      - run: npm ci
      - run: npm test

For canary versions:

jobs:
  build:
    runs-on: ubuntu-latest
    name: Node sample
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '16-v8-canary’
      - run: npm ci
      - run: npm test

For rc versions:

jobs:
  build:
    runs-on: ubuntu-latest
    name: Node sample
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '16.0.0-rc.1’
      - run: npm ci
      - run: npm test

Note: For more examples please refer to documentation.

Besides, we added the following changes as:

  • Updated minimatch: #608
  • Fixed extra newline character in version output when reading from a file: #625
  • Passed the token input through on GHES: #595
  • Fixed issue with scoped registries are duplicated in npmrc: #637

Update @actions/core and Print Node, Npm, Yarn versions

13 Oct 12:19
8c91899
Compare
Choose a tag to compare