Skip to content

Commit 2c3af3d

Browse files
committed
chore: use Node 22
1 parent 7256dcd commit 2c3af3d

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/azure-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Install Nodejs
3737
uses: actions/setup-node@v4
3838
with:
39-
node-version: 20
39+
node-version: 22
4040

4141
- name: Log in with Azure (Federated Credentials)
4242
if: ${{ env.AZURE_CLIENT_ID != '' }}

.github/workflows/build-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
platform: [ubuntu-latest, macos-latest, windows-latest]
17-
node-version: ['20']
17+
node-version: ['22']
1818

1919
name: ${{ matrix.platform }} / Node.js v${{ matrix.node-version }}
2020
runs-on: ${{ matrix.platform }}

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v4
1414
with:
15-
node-version: 20
15+
node-version: 22
1616
- name: Install dependencies
1717
run: npm ci
1818
- name: Install Playwright Browsers

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"tap": "^18.5.2"
4444
},
4545
"engines": {
46-
"node": ">=20",
46+
"node": ">=22",
4747
"npm": ">=10"
4848
},
4949
"simple-git-hooks": {

packages/indexer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Build Node.js app
44
# ------------------------------------
5-
FROM node:20-alpine as build
5+
FROM node:22-alpine as build
66
WORKDIR /app
77
COPY ./package*.json ./
88
COPY ./packages/indexer ./packages/indexer
@@ -11,7 +11,7 @@ RUN npm run build --workspace=indexer
1111

1212
# Run Node.js app
1313
# ------------------------------------
14-
FROM node:20-alpine
14+
FROM node:22-alpine
1515
ENV NODE_ENV=production
1616

1717
WORKDIR /app

packages/search/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Build Node.js app
44
# ------------------------------------
5-
FROM node:20-alpine as build
5+
FROM node:22-alpine as build
66
WORKDIR /app
77
COPY ./package*.json ./
88
COPY ./packages/search ./packages/search
@@ -11,7 +11,7 @@ RUN npm run build --workspace=search
1111

1212
# Run Node.js app
1313
# ------------------------------------
14-
FROM node:20-alpine
14+
FROM node:22-alpine
1515
ENV NODE_ENV=production
1616

1717
WORKDIR /app

0 commit comments

Comments
 (0)