Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 9, 2021

This PR contains the following updates:

Package Change Age Confidence Type Update
@types/node (source) ^17.0.8 -> ^22.0.0 age confidence devDependencies major
actions/checkout v2.3.4 -> v4.2.2 age confidence action major
actions/setup-node v2.4.1 -> v4.4.0 age confidence action major
eslint-config-prettier ^8.3.0 -> ^10.0.0 age confidence devDependencies major
husky ^7.0.4 -> ^9.0.0 age confidence devDependencies major
lint-staged ^12.1.7 -> ^16.0.0 age confidence devDependencies major
node (source) 14 -> 22 age confidence major
prettier (source) ^2.5.1 -> ^3.0.0 age confidence devDependencies major
rimraf ^3.0.2 -> ^6.0.0 age confidence devDependencies major
ts-node-dev ^1.1.8 -> ^2.0.0 age confidence devDependencies major
typescript (source) ^4.5.4 -> ^5.0.0 age confidence devDependencies major

Release Notes

actions/checkout (actions/checkout)

v4.2.2

Compare Source

v4.2.1

Compare Source

v4.2.0

Compare Source

v4.1.7

Compare Source

v4.1.6

Compare Source

v4.1.5

Compare Source

v4.1.4

Compare Source

v4.1.3

Compare Source

v4.1.2

Compare Source

v4.1.1

Compare Source

v4.1.0

Compare Source

v4.0.0

Compare Source

v3.6.0

Compare Source

v3.5.3

Compare Source

v3.5.2

Compare Source

v3.5.1

Compare Source

v3.5.0

Compare Source

v3.4.0

Compare Source

v3.3.0

Compare Source

v3.2.0

Compare Source

v3.1.0

Compare Source

v3.0.2

Compare Source

v3.0.1

Compare Source

v3.0.0

Compare Source

v2.7.0

Compare Source

What's Changed

Full Changelog: actions/checkout@v2.6.0...v2.7.0

v2.6.0

Compare Source

What's Changed

Full Changelog: actions/checkout@v2.5.0...v2.6.0

v2.5.0

Compare Source

What's Changed

Full Changelog: actions/checkout@v2...v2.5.0

v2.4.2

Compare Source

What's Changed

Full Changelog: actions/checkout@v2...v2.4.2

v2.4.1

Compare Source

  • Fixed an issue where checkout failed to run in container jobs due to the new git setting safe.directory

v2.4.0

Compare Source

  • Convert SSH URLs like org-<ORG_ID>@&#8203;github.com: to https://github.com/ - pr

v2.3.5

Compare Source

Update dependencies

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

v4.4.0

Compare Source

What's Changed
Bug fixes:
Enhancement:
Dependency update:
New Contributors

Full Changelogactions/setup-node@v4...v4.4.0

v4.3.0

Compare Source

What's Changed
Dependency updates
New Contributors

Full Changelog: actions/setup-node@v4...v4.3.0

v4.2.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/setup-node@v4...v4.2.0

v4.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/setup-node@v4...v4.1.0

v4.0.4

Compare Source

What's Changed

Documentation changes:

New Contributors

Full Changelog: actions/setup-node@v4...v4.0.4

v4.0.3

Compare Source

What's Changed

Bug fixes:
Documentation changes:
Dependency updates:

New Contributors

Full Changelog: actions/setup-node@v4...v4.0.3

v4.0.2

Compare Source

What's Changed

New Contributors

Full Changelog: actions/setup-node@v4.0.1...v4.0.2

v4.0.1

Compare Source

What's Changed
New Contributors

Full Changelog: actions/setup-node@v4...v4.0.1

v4.0.0

Compare Source

What's Changed

In scope of this release we changed version of node runtime for action from node16 to node20 and updated dependencies in https://github.com/actions/setup-node/pull/866

Besides, release contains such changes as:

New Contributors

Full Changelog: actions/setup-node@v3...v4.0.0

v3.9.1

Compare Source

What's Changed

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

v3.9.0

Compare Source

What's Changed

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

v3.8.2

Compare Source

What's Changed

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

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.


Configuration

📅 Schedule: Branch creation - "every weekend" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-all branch from 703da9f to 63bde28 Compare October 26, 2021 02:14
@renovate renovate bot changed the title chore(deps): update dependency eslint to v8 chore(deps): update all (major) Oct 26, 2021
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from fc8026a to 60cf322 Compare November 13, 2021 18:57
@renovate renovate bot force-pushed the renovate/major-all branch from 60cf322 to a1240fe Compare January 11, 2022 10:47
@renovate renovate bot changed the title chore(deps): update all (major) chore(deps): update node.js to v16 Jan 11, 2022
@renovate renovate bot force-pushed the renovate/major-all branch from a1240fe to 5db6ab9 Compare March 7, 2022 15:04
@renovate renovate bot changed the title chore(deps): update node.js to v16 chore(deps): update all (major) Mar 7, 2022
@renovate renovate bot force-pushed the renovate/major-all branch from 5db6ab9 to 7b109bc Compare April 24, 2022 19:14
@renovate renovate bot force-pushed the renovate/major-all branch from 7b109bc to 4a9c41c Compare May 15, 2022 19:27
@renovate renovate bot force-pushed the renovate/major-all branch from 4a9c41c to e5396a6 Compare June 18, 2022 17:02
@renovate renovate bot force-pushed the renovate/major-all branch from e5396a6 to cabf33f Compare September 25, 2022 22:33
@renovate renovate bot force-pushed the renovate/major-all branch from cabf33f to a6fc766 Compare November 20, 2022 07:54
@renovate renovate bot force-pushed the renovate/major-all branch from a6fc766 to f274021 Compare March 16, 2023 19:49
@renovate renovate bot force-pushed the renovate/major-all branch from f274021 to 1d9752d Compare March 24, 2023 22:36
@renovate renovate bot force-pushed the renovate/major-all branch from 1d9752d to 185d3ad Compare April 17, 2023 09:31
@renovate renovate bot force-pushed the renovate/major-all branch from 185d3ad to c6f2dea Compare June 9, 2023 17:12
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 933abfe to 33a74f1 Compare July 5, 2023 17:12
@renovate renovate bot force-pushed the renovate/major-all branch from 33a74f1 to 87fbbdd Compare August 5, 2023 19:21
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 445da16 to 4c880cb Compare August 17, 2023 17:15
@renovate renovate bot force-pushed the renovate/major-all branch from 4c880cb to 96fb1b2 Compare August 24, 2023 16:02
@renovate renovate bot force-pushed the renovate/major-all branch from 96fb1b2 to 5377506 Compare September 4, 2023 12:33
@renovate renovate bot force-pushed the renovate/major-all branch from 5377506 to 1560099 Compare September 22, 2023 20:04
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from b248fd8 to b69bb02 Compare October 17, 2023 17:27
@renovate renovate bot force-pushed the renovate/major-all branch from b69bb02 to 93c05b3 Compare October 23, 2023 13:55
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from aac6646 to cbc955c Compare October 24, 2023 00:39
@renovate renovate bot force-pushed the renovate/major-all branch from cbc955c to 7cba0d7 Compare December 18, 2023 12:39
@renovate renovate bot force-pushed the renovate/major-all branch from 7cba0d7 to aa95286 Compare January 25, 2024 03:56
@renovate renovate bot force-pushed the renovate/major-all branch from aa95286 to 0012222 Compare February 7, 2024 07:29
@renovate renovate bot force-pushed the renovate/major-all branch from 0012222 to 76885d6 Compare April 5, 2024 21:24
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 86643cb to 73988d7 Compare April 25, 2024 15:14
@renovate renovate bot force-pushed the renovate/major-all branch from 73988d7 to da1ff32 Compare May 9, 2024 02:04
@renovate renovate bot force-pushed the renovate/major-all branch from da1ff32 to f06b0d1 Compare May 16, 2024 23:03
@renovate renovate bot force-pushed the renovate/major-all branch from f06b0d1 to 26b5b7a Compare June 12, 2024 20:09
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from d5509f4 to 5e5fd71 Compare July 9, 2024 16:50
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from f9ebb92 to 3379200 Compare September 26, 2024 11:48
@renovate renovate bot force-pushed the renovate/major-all branch from 3379200 to 7b5f683 Compare October 7, 2024 19:12
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 8c04c78 to 15797b9 Compare October 29, 2024 02:24
@renovate renovate bot force-pushed the renovate/major-all branch from 15797b9 to 915951d Compare October 30, 2024 23:45
@renovate renovate bot force-pushed the renovate/major-all branch from 915951d to 578e1fb Compare January 13, 2025 15:00
@renovate renovate bot force-pushed the renovate/major-all branch from 578e1fb to c10ad30 Compare January 27, 2025 06:46
@renovate renovate bot force-pushed the renovate/major-all branch from c10ad30 to d3c7bab Compare March 17, 2025 04:24
@renovate renovate bot force-pushed the renovate/major-all branch from d3c7bab to 210e266 Compare April 14, 2025 04:36
@renovate renovate bot force-pushed the renovate/major-all branch from 210e266 to cdab7a4 Compare May 10, 2025 20:58
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 49c3412 to 7181d97 Compare July 31, 2025 22:49
@renovate renovate bot force-pushed the renovate/major-all branch from 7181d97 to 7a486e0 Compare August 3, 2025 18:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants