Skip to content

Commit a1b377c

Browse files
authored
Merge pull request #7726 from taskcluster/matt-boris/node22.15.1
build(deps): upgrade to node 22.15.1
2 parents 586fe70 + fa9ad07 commit a1b377c

File tree

16 files changed

+22
-16
lines changed

16 files changed

+22
-16
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.15.0
1+
22.15.1

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:22.15.0 AS build
4+
FROM node:22.15.1 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:22.15.0-alpine AS image
65+
FROM node:22.15.1-alpine AS image
6666
RUN apk --no-cache add --update nginx bash
6767
COPY --from=build /base/app /app
6868
ENV HOME=/app

changelog/SApoPHgRTjeg_qwqR_bnBw.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
audience: general
2+
level: patch
3+
---
4+
Upgrades to Node.js v22.15.1 (SECURITY).
5+
6+
More info [here](https://nodejs.org/en/blog/vulnerability/may-2025-security-releases).

clients/client-test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"taskcluster-lib-validate": "link:../libraries/validate"
2929
},
3030
"engines": {
31-
"node": "22.15.0"
31+
"node": "22.15.1"
3232
},
3333
"type": "module"
3434
}

clients/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"nock": "^13.5.5"
2424
},
2525
"engines": {
26-
"node": "22.15.0"
26+
"node": "22.15.1"
2727
},
2828
"type": "module",
2929
"files": [

cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ options:
9797
env:
9898
- USE_GKE_GCLOUD_AUTH_PLUGIN=True
9999
substitutions:
100-
_NODE_VERSION: 22.15.0
100+
_NODE_VERSION: 22.15.1
101101
_VERSION: '{"version":"${BRANCH_NAME}_${SHORT_SHA}","commit":"${SHORT_SHA}","source":"https://github.com/taskcluster/taskcluster","build":"${BUILD_ID}"}'
102102
_IMAGE_NAME: gcr.io/${PROJECT_ID}/${PROJECT_ID}/${BRANCH_NAME}
103103
_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 22.15.0 installed.
13+
You will need Node version 22.15.1 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
@@ -9,7 +9,7 @@
99

1010
[build.environment]
1111
YARN_FLAGS = "--immutable"
12-
NODE_VERSION = "22.15.0"
12+
NODE_VERSION = "22.15.1"
1313
APPLICATION_NAME = "Taskcluster"
1414
GRAPHQL_ENDPOINT = "https://community-tc.services.mozilla.com/graphql"
1515
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
@@ -5,7 +5,7 @@
55
"engine-strict": true,
66
"type": "module",
77
"engines": {
8-
"node": "22.15.0"
8+
"node": "22.15.1"
99
},
1010
"packageManager": "[email protected]",
1111
"workspaces": [

taskcluster/docker/browser-test/Dockerfile

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

33
VOLUME /builds/worker/checkouts
44

0 commit comments

Comments
 (0)