Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 16, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
actions/setup-node action major v2.5.2 -> v3.8.1

Release Notes

actions/setup-node (actions/setup-node)

v3.8.1

Compare Source

What's Changed

In scope of this release, the filter was removed within the cache-save step by @​dmitry-shibanov in https://github.com/actions/setup-node/pull/831. It is filtered and checked in the toolkit/cache library.

Full Changelog: actions/setup-node@v3...v3.8.1

v3.8.0

Compare Source

What's Changed

Bug fixes:
Feature implementations:
Documentation changes:
Update dependencies:

New Contributors

Full Changelog: actions/setup-node@v3...v3.8.0

v3.7.0

Compare Source

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: actions/setup-node@v3...v3.7.0

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

Compare Source

In scope of this release we added support to download nightly, rc (https://github.com/actions/setup-node/pull/611) and canary (https://github.com/actions/setup-node/pull/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:

v3.5.1: Update @​actions/core and Print Node, Npm, Yarn versions

Compare Source

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

Compare Source

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. https://github.com/actions/setup-node/pull/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

Compare Source

In scope of this release we fixed bugs related to the pnpm 7.5.1 output issue from pnpm store path https://github.com/actions/setup-node/pull/545. Moreover we fixed the issue with falling on node-version output https://github.com/actions/setup-node/pull/540.

v3.4.0: Add support for asdf format and update actions/cache version to 3.0.0

Compare Source

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 https://github.com/actions/setup-node/pull/373. Besides, we introduced new output node-version and added npm-shrinkwrap.json to dependency file patterns: https://github.com/actions/setup-node/pull/439

v3.3.0: Add support for lts/-n aliases

Compare Source

In scope of this release we added support for lts/-n aliases, improve logic for current, latest and node aliases to handle them from toolcache, update ncc 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 test
Minor improvements

v3.2.0: Add current, node, latest aliases

Compare Source

In scope of this release we added new aliases to install the latest Node.js version. https://github.com/actions/setup-node/pull/483

steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: current - run: npm ci - run: npm test

v3.1.1: Update actions/cache version to 2.0.2

Compare Source

In scope of this release we updated actions/cache package as the new version contains fixes related to GHES 3.5 (https://github.com/actions/setup-node/pull/460)

v3.1.0: Add caching support on GHES 3.5

Compare Source

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

Compare Source

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

Configuration

📅 Schedule: Branch creation - "before 4am" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.


PR-Codex overview

This PR updates the Node.js version used in the workflow to v3.8.1.

Detailed summary

  • Updates the Node.js version in the workflow from v2.5.2 to v3.8.1.

✨ Ask PR-Codex anything about this PR by commenting with /codex {your question}

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jun 16, 2023
@netlify
Copy link

netlify bot commented Jun 16, 2023

Deploy Preview for kleros-v2 ready!

Name Link
🔨 Latest commit cee2904
🔍 Latest deploy log https://app.netlify.com/sites/kleros-v2/deploys/6523e0a6c9a5290008db4a06
😎 Deploy Preview https://deploy-preview-944--kleros-v2.netlify.app/
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@netlify
Copy link

netlify bot commented Jun 16, 2023

Deploy Preview for kleros-v2-contracts ready!

Name Link
🔨 Latest commit 2580726
🔍 Latest deploy log https://app.netlify.com/sites/kleros-v2-contracts/deploys/64f1c28b259acd00081788b5
😎 Deploy Preview https://deploy-preview-944--kleros-v2-contracts.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot force-pushed the renovate/actions-setup-node-3.x branch 10 times, most recently from a1931e7 to 69f2f30 Compare June 23, 2023 10:53
@renovate renovate bot force-pushed the renovate/actions-setup-node-3.x branch from 69f2f30 to ba25028 Compare June 23, 2023 23:45
@renovate renovate bot force-pushed the renovate/actions-setup-node-3.x branch 14 times, most recently from 82d562e to 19445ee Compare June 28, 2023 16:01
@renovate renovate bot force-pushed the renovate/actions-setup-node-3.x branch 7 times, most recently from 1b12b0f to 2a3c2b8 Compare August 28, 2023 07:20
@renovate renovate bot force-pushed the renovate/actions-setup-node-3.x branch 7 times, most recently from bd2d6ca to 21854a7 Compare September 4, 2023 12:10
@renovate renovate bot force-pushed the renovate/actions-setup-node-3.x branch 3 times, most recently from bee3167 to cf31bab Compare September 11, 2023 05:26
@renovate renovate bot force-pushed the renovate/actions-setup-node-3.x branch 2 times, most recently from 3f36a9d to dfd7bfd Compare September 25, 2023 15:10
@renovate renovate bot force-pushed the renovate/actions-setup-node-3.x branch 2 times, most recently from ee3d464 to a30492f Compare September 26, 2023 18:14
@renovate renovate bot force-pushed the renovate/actions-setup-node-3.x branch from a30492f to 62b0d61 Compare October 7, 2023 00:27
@renovate renovate bot force-pushed the renovate/actions-setup-node-3.x branch from 62b0d61 to cee2904 Compare October 9, 2023 11:14
@qlty-cloud-legacy
Copy link

Code Climate has analyzed commit cee2904 and detected 0 issues on this pull request.

View more on Code Climate.

@sonarqubecloud
Copy link

sonarqubecloud bot commented Oct 9, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@jaybuidl jaybuidl added this pull request to the merge queue Oct 9, 2023
Merged via the queue into dev with commit 25f00d5 Oct 9, 2023
@renovate renovate bot deleted the renovate/actions-setup-node-3.x branch October 9, 2023 12:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

2 participants