Skip to content
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

Update to Node.js 20 #3283

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.17.0
v20.11.0
15,629 changes: 11 additions & 15,618 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@
"vitest": "^1.1.1"
},
"engines": {
"node": "^18.17.0",
"npm": "^9.6.7"
"node": "^20.11.0",
"npm": "^10.2.4"
},
"//": "Workspaces must be listed explicitly to ensure they're processed in the correct order until npm natively supports detecting the topological order",
"workspaces": [
Expand Down
4 changes: 2 additions & 2 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"react-router-dom": "^5.0.0"
},
"engines": {
"node": "^18.17.0",
"npm": "^9.6.7"
"node": "^20.11.0",
"npm": "^10.2.4"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions packages/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"cypress": "^13.6.3"
},
"engines": {
"node": "^18.17.0",
"npm": "^9.6.7"
"node": "^20.11.0",
"npm": "^10.2.4"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/graph/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"react-intl": "^6.4.1"
},
"engines": {
"node": "^18.17.0",
"npm": "^9.6.7"
"node": "^20.11.0",
"npm": "^10.2.4"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"react-router-dom": "^5.0.0"
},
"engines": {
"node": "^18.17.0",
"npm": "^9.6.7"
"node": "^20.11.0",
"npm": "^10.2.4"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion tekton/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ This uses the same `Pipeline` and `Task`s as an official release.

If you need to manually trigger a nightly release, switch to the `dogfooding` context and run the following (substituting the date/time with current values):

`kubectl create job --from=cronjob/nightly-cron-trigger-dashboard-nightly-release dashboard-nightly-20220426-1314`
`kubectl create job --from=cronjob/nightly-cron-trigger-dashboard-nightly-release dashboard-nightly-$(date +"%Y%m%d-%H%M")`

## Setup

Expand Down
4 changes: 2 additions & 2 deletions tekton/build.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
apiVersion: tekton.dev/v1beta1
apiVersion: tekton.dev/v1
kind: Task
metadata:
name: build-dashboard
Expand All @@ -8,7 +8,7 @@ spec:
- name: source
steps:
- name: build-static
image: node:18.17-slim
image: node:20.11-slim
workingDir: $(workspaces.source.path)
env:
- name: CI
Expand Down
2 changes: 1 addition & 1 deletion tekton/prerelease-checks.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: tekton.dev/v1beta1
apiVersion: tekton.dev/v1
kind: Task
metadata:
name: dashboard-prerelease-checks
Expand Down
2 changes: 1 addition & 1 deletion tekton/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
apiVersion: tekton.dev/v1beta1
apiVersion: tekton.dev/v1
kind: Task
metadata:
name: publish-dashboard-release
Expand Down
Loading