Skip to content

Commit

Permalink
deps: upgrade to Node 22
Browse files Browse the repository at this point in the history
  • Loading branch information
clementprevot committed Jan 7, 2025
1 parent 91b0845 commit 6676696
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ on:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
quality:
Expand All @@ -25,8 +25,8 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
node-version: 22.x

- name: Setting up dependencies & workspaces
run: yarn install --immutable --immutable-cache && yarn run -T setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
cache: yarn

- name: Setting up dependencies & workspaces
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- if: env.SKIP_INTEGRITY_CHECK != 1
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
cache: yarn

- if: env.SKIP_INTEGRITY_CHECK != 1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ touch ~/.bash_profile
To be able to work with this repository, you will have to have a working version
of NodeJS.

You can simply install the latest version of the 18.x.x or LTS 20.x.x build.
You can simply install the latest version of the 18.x.x or LTS 22.x.x build.

To do so, it's recommended to use a Node Version Manager like
[NVM](https://github.com/nvm-sh/nvm) or [N](https://github.com/tj/n)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"packageManager": "yarn@4.5.3",
"engines": {
"yarn": "^4.0.0",
"node": ">=18 <=20"
"node": ">=18 <=22"
},
"workspaces": [
"packages/*"
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-snowball-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"typescript": "^5.7.2"
},
"engines": {
"node": ">= 20",
"node": ">=20 <=22",
"yarn": "^4.0.0"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/prettier-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"description": "Prettier config by Snowball",
"engines": {
"node": ">=18 <=20",
"node": ">=18 <=22",
"yarn": "^4.0.0"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/renovate-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"renovate": "^39.38.0"
},
"engines": {
"node": ">=18 <=20",
"node": ">=18 <=22",
"yarn": "^4.0.0"
},
"files": [],
Expand Down
2 changes: 1 addition & 1 deletion packages/semantic-release-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"description": "Semantic-Release configuration by Snowball supporting Yarn 3 mono-repositories",
"engines": {
"node": ">=18 <=20",
"node": ">=18 <=22",
"yarn": "^4.0.0"
},
"files": [
Expand Down

0 comments on commit 6676696

Please sign in to comment.