diff --git a/services/linked-url-proxy/.nvmrc b/services/linked-url-proxy/.nvmrc index 91d5f6ff8e..3fe3b1570a 100644 --- a/services/linked-url-proxy/.nvmrc +++ b/services/linked-url-proxy/.nvmrc @@ -1 +1 @@ -22.18.0 +24.13.0 diff --git a/services/linked-url-proxy/Dockerfile b/services/linked-url-proxy/Dockerfile index 7f2053f614..756c53a8f9 100644 --- a/services/linked-url-proxy/Dockerfile +++ b/services/linked-url-proxy/Dockerfile @@ -2,7 +2,7 @@ # Instead run bin/update_build_scripts from # https://github.com/overleaf/internal/ -FROM node:22.18.0 AS base +FROM node:24.13.0 AS base WORKDIR /overleaf/services/linked-url-proxy diff --git a/services/linked-url-proxy/Makefile b/services/linked-url-proxy/Makefile index 80a6bbccb1..261bda967f 100644 --- a/services/linked-url-proxy/Makefile +++ b/services/linked-url-proxy/Makefile @@ -50,12 +50,12 @@ clean: # Run the linting commands in the scope of the monorepo. # Eslint and prettier (plus some configs) are on the root. -RUN_LINTING = docker run --rm -v $(MONOREPO):$(MONOREPO) -w $(HERE) node:22.18.0 npm run --silent +RUN_LINTING = docker run --rm -v $(MONOREPO):$(MONOREPO) -w $(HERE) node:24.13.0 npm run --silent RUN_LINTING_CI = docker run --rm --volume $(MONOREPO)/.editorconfig:/overleaf/.editorconfig --volume $(MONOREPO)/.eslintignore:/overleaf/.eslintignore --volume $(MONOREPO)/.eslintrc:/overleaf/.eslintrc --volume $(MONOREPO)/.prettierignore:/overleaf/.prettierignore --volume $(MONOREPO)/.prettierrc:/overleaf/.prettierrc --volume $(MONOREPO)/tsconfig.backend.json:/overleaf/tsconfig.backend.json --volume $(MONOREPO)/services/linked-url-proxy/reports:/overleaf/services/linked-url-proxy/reports $(IMAGE_CI) npm run --silent # Same but from the top of the monorepo -RUN_LINTING_MONOREPO = docker run --rm -v $(MONOREPO):$(MONOREPO) -w $(MONOREPO) node:22.18.0 npm run --silent +RUN_LINTING_MONOREPO = docker run --rm -v $(MONOREPO):$(MONOREPO) -w $(MONOREPO) node:24.13.0 npm run --silent SHELLCHECK_OPTS = \ --shell=bash \ diff --git a/services/linked-url-proxy/buildscript.txt b/services/linked-url-proxy/buildscript.txt index 71bc14c557..6e934db018 100644 --- a/services/linked-url-proxy/buildscript.txt +++ b/services/linked-url-proxy/buildscript.txt @@ -2,5 +2,5 @@ linked-url-proxy --env-add= --env-pass-through= --esmock-loader=False ---node-version=22.18.0 +--node-version=24.13.0 --public-repo=False diff --git a/services/linked-url-proxy/docker-compose.yml b/services/linked-url-proxy/docker-compose.yml index 87e784e681..4e88a2106b 100644 --- a/services/linked-url-proxy/docker-compose.yml +++ b/services/linked-url-proxy/docker-compose.yml @@ -4,7 +4,7 @@ services: test_unit: - image: node:22.18.0 + image: node:24.13.0 volumes: - .:/overleaf/services/linked-url-proxy - ../../node_modules:/overleaf/node_modules @@ -19,7 +19,7 @@ services: user: node test_acceptance: - image: node:22.18.0 + image: node:24.13.0 volumes: - .:/overleaf/services/linked-url-proxy - ../../node_modules:/overleaf/node_modules