Skip to content

Commit 044902c

Browse files
authored
Revert "chore(deps): bump node from 22.3-alpine to 22.4-alpine" (#4833)
* Revert "bump to node 22.4.1 and npm 10.8.1" This reverts commit 70269cc. * Revert "chore(deps): bump node from 22.3-alpine to 22.4-alpine" This reverts commit 53b00c7.
1 parent 4a68966 commit 044902c

11 files changed

+13
-13
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Use Node.js
1313
uses: actions/setup-node@v4
1414
with:
15-
node-version: '22.4.x'
15+
node-version: '22.3.x'
1616
- run: npm ci
1717
- run: npm run build-glean
1818
# Verify that the build (incl. type-checking) succeeds

.github/workflows/e2e_cron.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v4
2222
- uses: actions/setup-node@v4
2323
with:
24-
node-version: 22.4
24+
node-version: 22.3
2525

2626
- name: Install dependencies
2727
run: npm ci

.github/workflows/e2e_pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v4
3333
- uses: actions/setup-node@v4
3434
with:
35-
node-version: 22.4
35+
node-version: 22.3
3636

3737
- name: Install dependencies
3838
run: npm ci

.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Use Node.js
1313
uses: actions/setup-node@v4
1414
with:
15-
node-version: '22.4.x'
15+
node-version: '22.3.x'
1616
- run: npm ci
1717
- run: npm run build-glean
1818
- run: npm run build-nimbus

.github/workflows/unittests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Use Node.js
1313
uses: actions/setup-node@v4
1414
with:
15-
node-version: '22.4.x'
15+
node-version: '22.3.x'
1616
- run: npm ci
1717
- run: npm run build-glean
1818
- run: npm test

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.4-alpine
1+
FROM node:22.3-alpine
22

33
RUN addgroup -g 10001 app && \
44
adduser -D -G app -h /app -u 10001 app

Dockerfile.cloudrun

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.4-alpine
1+
FROM node:22.3-alpine
22

33
RUN addgroup -g 10001 app && \
44
adduser -D -G app -h /app -u 10001 app

esbuild.cronjobs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ build({
2121
format: "esm",
2222
outdir: "dist/scripts/cronjobs/",
2323
sourcemap: true,
24-
target: "node22.4",
24+
target: "node22.3",
2525
packages: "external",
2626
});

netlify.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
# Default build command.
1919
command = "npm ci; npm run build-storybook"
2020

21-
environment = { NODE_VERSION = "22.4.1", NPM_VERSION = "10.8.1" }
21+
environment = { NODE_VERSION = "22.3.0", NPM_VERSION = "10.8.0" }

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"description": "Firefox Monitor",
55
"engines": {
6-
"node": "22.4.x",
6+
"node": "22.3.x",
77
"npm": "10.8.x"
88
},
99
"type": "module",
@@ -56,8 +56,8 @@
5656
"homepage": "https://github.com/mozilla/blurts-server",
5757
"license": "MPL-2.0",
5858
"volta": {
59-
"node": "22.4.1",
60-
"npm": "10.8.1"
59+
"node": "22.3.0",
60+
"npm": "10.8.0"
6161
},
6262
"dependencies": {
6363
"@aws-sdk/client-s3": "^3.614.0",

0 commit comments

Comments
 (0)