diff options
author | Vinayak Kulkarni <inbox.vinayak@gmail.com> | 2024-02-27 07:05:06 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-26 17:35:06 -0800 |
commit | 771999761e9a69d4f884c1c75cf20fde5d149791 (patch) | |
tree | 8a15d737c3bc07c46eb6bf2a9733fc866165bdf7 /Dockerfile | |
parent | e9ad3f552d072ed2c818bcb28a90b46ee2027af7 (diff) | |
download | voidsky-771999761e9a69d4f884c1c75cf20fde5d149791.tar.zst |
feat(nvm): add support for nvm & minor actions housekeeping (#2979)
* feat: add `.nvmrc` for specifying node version Co-Authored-By: Evandro Leopoldino Gonçalves <evandrolgoncalves@gmail.com> * chore(deps): bump setup-node to v4 * build: use node-version-file instead of hardcoded 18.x * chore(deps): bump nvm version * fix: checkout before install 🎉 --------- Co-authored-by: Evandro Leopoldino Gonçalves <evandrolgoncalves@gmail.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 47afa61a3..fcd2413cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ COPY . . RUN mkdir --parents $NVM_DIR && \ wget \ --output-document=/tmp/nvm-install.sh \ - https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh && \ + https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh && \ bash /tmp/nvm-install.sh RUN \. "$NVM_DIR/nvm.sh" && \ |