Skip to content

Commit dfa4fe9

Browse files
Update node to v24
Uses bookworm slim docker image
1 parent 0eac3cd commit dfa4fe9

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/a11y_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/checkout@v5
4242
- uses: actions/setup-node@v4
4343
with:
44-
node-version: 20
44+
node-version: 24
4545
- name: Install dependencies
4646
run: cd tests/playwright && npm ci && npm run install-deps
4747
- name: Run accessibility tests

.github/workflows/integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
- uses: actions/checkout@v5
109109
- uses: actions/setup-node@v4
110110
with:
111-
node-version: 20
111+
node-version: 24
112112
- name: Install dependencies
113113
run: cd tests/playwright && npm ci && npm run install-deps
114114
- name: Run Playwright tests

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v5
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 20
22+
node-version: 24
2323
cache: npm
2424
- name: "Install JS dependencies"
2525
run: npm ci

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN pip install --require-hashes --no-cache-dir -r requirements/prod.txt
2222
########
2323
# assets builder and dev server
2424
#
25-
FROM node:20.14.0-slim AS assets
25+
FROM node:24-slim AS assets
2626

2727
ENV PATH=/app/node_modules/.bin:$PATH
2828
WORKDIR /app

0 commit comments

Comments
 (0)