Skip to content

Commit 8c50ed7

Browse files
authored
Merge pull request #6430 from taskcluster/matt-boris/node18.17.0
build(deps): node upgrade to 18.17.0
2 parents 02a113d + 9673f8b commit 8c50ed7

File tree

11 files changed

+15
-11
lines changed

11 files changed

+15
-11
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.16.1
1+
18.17.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:18.16.1 as build
4+
FROM node:18.17.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:18.16.1-alpine as image
65+
FROM node:18.17.0-alpine as image
6666
RUN apk --no-cache add --update nginx bash
6767
COPY --from=build /base/app /app
6868
ENV HOME=/app

changelog/BJZVUKGhRsGLDFW281LHIg.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
audience: general
2+
level: patch
3+
---
4+
Upgrade Node.js to 18.17.0.

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: 18.16.1
105+
_NODE_VERSION: 18.17.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 18.16.1 installed.
13+
You will need Node version 18.17.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[build.environment]
1111
YARN_FLAGS = "--frozen-lockfile"
1212
YARN_VERSION = "1.22.19"
13-
NODE_VERSION = "18.16.1"
13+
NODE_VERSION = "18.17.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": "18.16.1",
7+
"node": "18.17.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:18.16.1
1+
FROM node:18.17.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": "18.16.1",
7+
"node": "18.17.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": "54.4.0",
55
"engine-strict": true,
66
"engines": {
7-
"node": "18.16.1",
7+
"node": "18.17.0",
88
"yarn": "^1.22.19"
99
},
1010
"description": "Docker task host for linux.",

0 commit comments

Comments
 (0)