-
Notifications
You must be signed in to change notification settings - Fork 887
chore: upgrade nodejs version to 18.x #8768
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other than this it's good to go.
@@ -13,7 +13,7 @@ runs: | |||
- name: Setup Node | |||
uses: buildjet/setup-node@v3 | |||
with: | |||
node-version: 16.20.1 | |||
node-version: 18.17.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
node-version: 18.17.0 | |
node-version: 18.x |
As we are installing the latest 18.x release in Dockerfile should we also do this in ci?
@kylecarbs for a 2nd thought.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not? The docker file is for the workspace and the CI should use the same version as well.
@@ -190,6 +190,7 @@ RUN LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygi | |||
# Install frontend utilities | |||
RUN apt-get update && \ | |||
# Node.js (from nodesource) and Yarn (from yarnpkg) | |||
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - &&\ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here we are installing the latest 18.x release.
Close #8386