Skip to content

Commit

Permalink
Update Node.js to latest 18.x release
Browse files Browse the repository at this point in the history
This also updates the version of npm used from 8.x to 9.x
  • Loading branch information
AlanGreene authored and tekton-robot committed Apr 26, 2023
1 parent 12fe270 commit 35f743b
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
20 changes: 10 additions & 10 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 @@ -108,8 +108,8 @@
}
},
"engines": {
"node": "^18.13.0",
"npm": "^8.19.3"
"node": "^18.16.0",
"npm": "^9.5.1"
},
"//": "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 @@ -37,8 +37,8 @@
"react-router-dom": "^5.0.0"
},
"engines": {
"node": "^18.13.0",
"npm": "^8.19.3"
"node": "^18.16.0",
"npm": "^9.5.1"
},
"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": "^12.10.0"
},
"engines": {
"node": "^18.13.0",
"npm": "^8.19.3"
"node": "^18.16.0",
"npm": "^9.5.1"
},
"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 @@ -36,8 +36,8 @@
"react-intl": "^6.4.1"
},
"engines": {
"node": "^18.13.0",
"npm": "^8.19.3"
"node": "^18.16.0",
"npm": "^9.5.1"
},
"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 @@ -12,8 +12,8 @@
"react-router-dom": "^5.0.0"
},
"engines": {
"node": "^18.13.0",
"npm": "^8.19.3"
"node": "^18.16.0",
"npm": "^9.5.1"
},
"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 @@ -8,7 +8,7 @@ spec:
- name: source
steps:
- name: build-static
image: node:18.13-alpine
image: node:18.16-alpine
workingDir: $(workspaces.source.path)
env:
- name: CI
Expand Down
6 changes: 3 additions & 3 deletions test/presubmit-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ function get_node() {
echo "Installing Node.js"
apt-get update
apt-get install -y curl
curl -O https://nodejs.org/dist/v18.13.0/node-v18.13.0-linux-x64.tar.xz
tar xf node-v18.13.0-linux-x64.tar.xz
export PATH=$PATH:$(pwd)/node-v18.13.0-linux-x64/bin
curl -O https://nodejs.org/dist/v18.16.0/node-v18.16.0-linux-x64.tar.xz
tar xf node-v18.16.0-linux-x64.tar.xz
export PATH=$PATH:$(pwd)/node-v18.16.0-linux-x64/bin
echo ">> Node.js version"
node --version
echo ">> npm version"
Expand Down

0 comments on commit 35f743b

Please sign in to comment.