Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/test-and-lint-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22.17.1
node-version: 24.12.0

- name: Instal npm dependencies
run: npm clean-install
Expand Down
2 changes: 1 addition & 1 deletion environment/dev/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN wget --output-document age.tar.gz "https://github.com/FiloSottile/age/releas
FROM composer/composer:2.8.12-bin@sha256:f1a57d9cabfc04430058288eaab6c18967b19a3870b5fe71bf0c6afd67968653 AS composer-bin

# https://hub.docker.com/_/node
FROM node:22.17.1-bullseye-slim@sha256:741a60f76e79ab4080ebb10d24ec0c2aa4527fc44e33a8d609c416cc351b4fff AS node
FROM node:24.12.0-bullseye-slim@sha256:08008d86922fb2b5d06c7b4b478a6f698f649d7cf1fefa68578e7af49aed6186 AS node

FROM php:${PHP_VERSION}-cli-bullseye AS unit-modules-builder

Expand Down
2 changes: 1 addition & 1 deletion environment/prod/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN composer install \
--ignore-platform-reqs

### FRONTEND ###
FROM node:22.17.1-bullseye-slim@sha256:741a60f76e79ab4080ebb10d24ec0c2aa4527fc44e33a8d609c416cc351b4fff AS frontend
FROM node:24.12.0-bullseye-slim@sha256:08008d86922fb2b5d06c7b4b478a6f698f649d7cf1fefa68578e7af49aed6186 AS frontend

WORKDIR /app_frontend_dependencies

Expand Down