Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .browserslistrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
maintained node versions

[node-development]
node 22
node 24

[browser-production]
> 1%
Expand All @@ -26,4 +26,4 @@ maintained node versions
last 1 chrome version
last 1 firefox version
last 1 safari version
node 22
node 24
4 changes: 2 additions & 2 deletions .github/workflows/docker-build-push-unstable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Use Node.js 22
- name: Use Node.js 24
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
cache-dependency-path: package-lock.json

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Use Node.js 22
- name: Use Node.js 24
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
cache-dependency-path: package-lock.json

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Use Node.js 20.x
- name: Use Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24

- name: Cache Node Modules and Cypress binary
uses: actions/cache@v5
Expand Down Expand Up @@ -64,10 +64,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Use Node.js 20.x
- name: Use Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24

- name: Cache Node Modules and Cypress binary
uses: actions/cache@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-swagger-ui-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
cache-dependency-path: package-lock.json

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-swagger-ui-react.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: npm
cache-dependency-path: package-lock.json

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-swagger-ui.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@v6
with:
node-version: 22
node-version: 24
cache: npm
cache-dependency-path: package-lock.json

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.11.0
24.12.0
2 changes: 1 addition & 1 deletion docs/development/setting-up.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SwaggerUI includes a development server that provides hot module reloading and u
### Prerequisites

- git, any version
- **Node.js >=22.11.0** and **npm >=10.9.0** are the minimum required versions that this repo runs on, but we always recommend using the latest version of Node.js.
- **Node.js >=24.12.0** and **npm >=11.6.2** are the minimum required versions that this repo runs on, but we always recommend using the latest version of Node.js.



Expand Down
Loading