Skip to content

Commit e34ee5a

Browse files
Vinnlkschelonka
andauthored
Update to latest Node.js patch release (#6407)
* Update to latest Node.js patch release * chore(deps): node bump to 20.20 * chore(deps): re-add node 20.20-alpine image When it is available we can merge --------- Co-authored-by: Kat Schelonka <kschelonka@mozilla.com> Co-authored-by: Kat Schelonka <34227334+kschelonka@users.noreply.github.com>
1 parent f00b3d5 commit e34ee5a

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Use Node.js
1818
uses: actions/setup-node@v6
1919
with:
20-
node-version: "20.19.x"
20+
node-version: "20.20.x"
2121
- run: npm ci
2222
- run: npm run build-glean
2323
# Verify that the build (incl. type-checking) succeeds

.github/workflows/functional_tests_cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
persist-credentials: false
3737
- uses: actions/setup-node@v6
3838
with:
39-
node-version: 20.19.x
39+
node-version: 20.20.x
4040

4141
- name: Install dependencies
4242
run: npm ci

.github/workflows/functional_tests_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
persist-credentials: false
3838
- uses: actions/setup-node@v6
3939
with:
40-
node-version: 20.19.x
40+
node-version: 20.20.x
4141

4242
- name: Install dependencies
4343
run: npm ci

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Use Node.js
1919
uses: actions/setup-node@v6
2020
with:
21-
node-version: '20.19.x'
21+
node-version: '20.20.x'
2222
- run: npm ci
2323
- run: npm run build-glean
2424
- run: npm run build-nimbus

.github/workflows/test_integrations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up node
3434
uses: actions/setup-node@v6
3535
with:
36-
node-version: 20.19.x
36+
node-version: 20.20.x
3737

3838
- name: Install dependencies
3939
run: npm ci

.github/workflows/unittests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Use Node.js
2121
uses: actions/setup-node@v6
2222
with:
23-
node-version: '20.19.x'
23+
node-version: '20.20.x'
2424
- run: npm ci
2525
- run: npm run build-glean
2626
# Run the regular tests on push

Dockerfile

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

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

Dockerfile.cloudrun

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

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

esbuild.cronjobs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ build({
2424
format: "esm",
2525
outdir: "dist/scripts/cronjobs/",
2626
sourcemap: true,
27-
target: "node20.19",
27+
target: "node20.20",
2828
packages: "external",
2929
});

netlify.toml

Lines changed: 1 addition & 1 deletion
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 = "20.19.0", NPM_VERSION = "10.1.0" }
21+
environment = { NODE_VERSION = "20.20.0", NPM_VERSION = "10.1.0" }

0 commit comments

Comments
 (0)