diff --git a/system-test/Dockerfile.linux b/system-test/Dockerfile.linux index 8a33e8e5..cf21f952 100644 --- a/system-test/Dockerfile.linux +++ b/system-test/Dockerfile.linux @@ -20,7 +20,7 @@ RUN mkdir -p $NVM_DIR # Install nvm with node and npm -RUN curl https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash \ +RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash \ && . $NVM_DIR/nvm.sh \ && nvm install $NODE_VERSION diff --git a/tools/publish.sh b/tools/publish.sh index eb9a6f78..e50ba5aa 100755 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -19,7 +19,7 @@ set -eo pipefail # Install desired version of Node.js -retry curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash >/dev/null +retry curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash >/dev/null export NVM_DIR="$HOME/.nvm" >/dev/null [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" >/dev/null