Skip to content

Commit 6b3ec8b

Browse files
authored
Merge pull request #8 from itk-dev/feature/update-node-to-lts-22
chore: update Node.js from 24 to 22 LTS
2 parents 26f7853 + 4c89dab commit 6b3ec8b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- uses: actions/setup-node@v4
2424
with:
25-
node-version: "24"
25+
node-version: "22"
2626
cache: "npm"
2727

2828
- name: Install dependencies

.github/workflows/verify_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- uses: actions/setup-node@v4
1717
with:
18-
node-version: "24"
18+
node-version: "22"
1919
cache: "npm"
2020

2121
- name: Install dependencies

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ services:
2828
- "traefik.http.routers.${COMPOSE_PROJECT_NAME:?}.rule=Host(`${COMPOSE_DOMAIN:?}`)"
2929

3030
node:
31-
image: node:24-alpine
31+
image: node:22-alpine
3232
command: sh -c "npm install && npx vitepress dev docs --host 0.0.0.0"
3333
working_dir: /app
3434
networks:

0 commit comments

Comments
 (0)