Skip to content

Commit

Permalink
feat: default workflows to Node.js 22 (#136)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: default workflows to Node.js 22, which entered active LTS as of today, 29 October 2024.
  • Loading branch information
jdbruijn authored Oct 29, 2024
1 parent 488f113 commit adef0c0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-commit-messages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 20
node-version: 22
- name: Install project
run: npm ci --ignore-scripts
- name: Lint commit messages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
inputs:
nodeVersion:
type: string
default: '20'
default: '22'
required: false
jobs:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node-install-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 20
node-version: 22
- name: Install project
run: npm ci --ignore-scripts
2 changes: 1 addition & 1 deletion .github/workflows/node-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
inputs:
nodeVersion:
type: string
default: '20'
default: '22'
required: false
jobs:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node-test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
inputs:
nodeVersion:
type: string
default: '20'
default: '22'
required: false
coverageFile:
type: string
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
inputs:
nodeVersion:
type: string
default: '20'
default: '22'
required: false
jobs:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
inputs:
nodeVersion:
type: string
default: '20'
default: '22'
required: false
appId:
type: string
Expand Down

0 comments on commit adef0c0

Please sign in to comment.