From c83c8e37a81644eebfa8e53578e70b001099ffe1 Mon Sep 17 00:00:00 2001 From: Autofix <61800571+autofix-bot@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:55:10 +0200 Subject: [PATCH] Autofix: upgrade-nvm-tools (#20186) Co-authored-by: Autofix --- .devcontainer/Dockerfile | 2 +- dev/image/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index f37e95e84b24e3..4f7b8fe9b33a15 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -311,7 +311,7 @@ RUN curl -fsSL "https://get.sdkman.io" | bash \ # above, we are adding the sdkman init to .bashrc (executing sdkman-init.sh does that), because one is executed on interactive shells, the other for non-interactive shells (e.g. plugin-host) ENV GRADLE_USER_HOME=/workspace/.gradle/ -ENV NODE_VERSION=18.18.2 +ENV NODE_VERSION=18.20.4 ENV PNPM_HOME=/root/.pnpm ENV PATH=/root/.nvm/versions/node/v${NODE_VERSION}/bin:/root/.yarn/bin:${PNPM_HOME}:$PATH diff --git a/dev/image/Dockerfile b/dev/image/Dockerfile index e21ffbf1dc55c4..d85944910e9f69 100644 --- a/dev/image/Dockerfile +++ b/dev/image/Dockerfile @@ -124,7 +124,7 @@ RUN install-packages netcat USER gitpod # Fix node version we develop against -ARG GITPOD_NODE_VERSION=18.20.2 +ARG GITPOD_NODE_VERSION=18.20.4 RUN bash -c ". .nvm/nvm.sh \ && nvm install $GITPOD_NODE_VERSION \ && npm install -g typescript yarn"