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 Node.js to 20.14 and Chrome to 126 #3466

Merged
merged 1 commit into from
Jun 19, 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 @@
v20.11.0
v20.14.0
40 changes: 20 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@
"vitest": "^1.1.1"
},
"engines": {
"node": "^20.11.0",
"npm": "^10.2.4"
"node": "^20.14.0",
"npm": "^10.7.0"
},
"//": "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": "^6.0.0"
},
"engines": {
"node": "^20.11.0",
"npm": "^10.2.4"
"node": "^20.14.0",
"npm": "^10.7.0"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions packages/e2e/base-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
# https://nodejs.org/en/about/previous-releases

ARG CHROME_VERSION='124.0.6367.91-1'
ARG NODE_VERSION='20.12.2'
ARG CHROME_VERSION='126.0.6478.114-1'
ARG NODE_VERSION='20.14.0'

FROM cypress/factory

Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/base-image/tekton/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ spec:
- name: CONTEXT_PATH
value: packages/e2e/base-image
- name: TAGS
value: latest,node20.12.2-chrome124
value: latest,node20.14.0-chrome126
9 changes: 4 additions & 5 deletions packages/e2e/base-image/tekton/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.

---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
bases:
nameSuffix: -dashboard-e2e-base
patches:
- path: cronjob.yaml
resources:
- github.com/tektoncd/plumbing/tekton/cronjobs/bases/image-build?ref=main
patchesStrategicMerge:
- cronjob.yaml
nameSuffix: "-dashboard-e2e-base"
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.8.1"
},
"engines": {
"node": "^20.11.0",
"npm": "^10.2.4"
"node": "^20.14.0",
"npm": "^10.7.0"
},
"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": "^20.11.0",
"npm": "^10.2.4"
"node": "^20.14.0",
"npm": "^10.7.0"
},
"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": "^6.0.0"
},
"engines": {
"node": "^20.11.0",
"npm": "^10.2.4"
"node": "^20.14.0",
"npm": "^10.7.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion tekton/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
- name: source
steps:
- name: build-static
image: node:20.11-slim
image: node:20.14-slim
workingDir: $(workspaces.source.path)
env:
- name: CI
Expand Down
Loading