Skip to content

Commit c03e061

Browse files
committed
build(deps): upgrade node to 18.13.0
1 parent 2f56e95 commit c03e061

File tree

11 files changed

+18
-12
lines changed

11 files changed

+18
-12
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.19.0
1+
18.13.0

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
##
22
# Build /app
33

4-
FROM node:16.19.0 as build
4+
FROM node:18.13.0 as build
55

66
RUN mkdir -p /base/cache
77
ENV YARN_CACHE_FOLDER=/base/cache
@@ -62,7 +62,7 @@ RUN /bin/bash -c "\
6262
##
6363
# build the final image
6464

65-
FROM node:16.19.0-alpine as image
65+
FROM node:18.13.0-alpine as image
6666
RUN apk --no-cache add --update nginx bash
6767
COPY --from=build /base/app /app
6868
ENV HOME=/app
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
audience: general
2+
level: minor
3+
---
4+
This upgrades Node.js to the latest LTS version available, v18.13.0. Previous version was v16.19.0 and it was scheduled to hit EoL later this year.
5+
6+
View the release schedule [here](https://github.com/nodejs/release#release-schedule).

cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ options:
102102
env:
103103
- USE_GKE_GCLOUD_AUTH_PLUGIN=True
104104
substitutions:
105-
_NODE_VERSION: 16.19.0
105+
_NODE_VERSION: 18.13.0
106106
_VERSION: '{"version":"${BRANCH_NAME}_${SHORT_SHA}","commit":"${SHORT_SHA}","source":"https://github.com/taskcluster/taskcluster","build":"${BUILD_ID}"}'
107107
_IMAGE_NAME: gcr.io/${PROJECT_ID}/${PROJECT_ID}/${BRANCH_NAME}
108108
_DEPLOY_IMAGE_NAME: gcr.io/${PROJECT_ID}/${PROJECT_ID}/${BRANCH_NAME}-deploy

dev-docs/development-process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You will probably be working on only one of these pieces, so read carefully belo
1010
### Node
1111

1212
<!-- the next line is automatically edited; do not change -->
13-
You will need Node version 16.19.0 installed.
13+
You will need Node version 18.13.0 installed.
1414
We recommend using https://github.com/nvm-sh/nvm to support installing multiple Node versions.
1515

1616
We use `yarn` to run most development commands, so [install that as well](https://classic.yarnpkg.com/en/docs/install/#debian-stable).

netlify.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
[build.environment]
1111
YARN_FLAGS = "--frozen-lockfile"
12-
YARN_VERSION = "1.22.4"
13-
NODE_VERSION = "16.19.0"
12+
YARN_VERSION = "1.22.19"
13+
NODE_VERSION = "18.13.0"
1414
APPLICATION_NAME = "Taskcluster"
1515
GRAPHQL_ENDPOINT = "https://community-tc.services.mozilla.com/graphql"
1616
GRAPHQL_SUBSCRIPTION_ENDPOINT = "https://community-tc.services.mozilla.com/subscription"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"engine-strict": true,
66
"engines": {
7-
"node": "16.19.0",
7+
"node": "18.13.0",
88
"yarn": "^1.22.19"
99
},
1010
"workspaces": [

ui/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16.19.0
1+
FROM node:18.13.0
22

33
WORKDIR /app/ui
44
COPY yarn.lock package.json ./

ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"license": "MPL-2.0",
66
"engines": {
7-
"node": "16.19.0",
7+
"node": "18.13.0",
88
"yarn": "^1.22.19"
99
},
1010
"scripts": {

workers/docker-worker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "47.0.3",
55
"engine-strict": true,
66
"engines": {
7-
"node": "16.19.0",
7+
"node": "18.13.0",
88
"yarn": "^1.22.19"
99
},
1010
"description": "Docker task host for linux.",

0 commit comments

Comments
 (0)