Skip to content

Commit a49f64f

Browse files
committed
fix
1 parent cf88e22 commit a49f64f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup Node.js environment
1414
uses: actions/setup-node@v4
1515
with:
16-
node-version: '18'
16+
node-version: '20'
1717

1818
- name: Install npm dependencies
1919
run: npm ci
@@ -73,7 +73,7 @@ jobs:
7373
- name: Setup Node.js environment
7474
uses: actions/setup-node@v4
7575
with:
76-
node-version: '18'
76+
node-version: '20'
7777

7878
- name: Install npm dependencies
7979
working-directory: prisma

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"test:ldap": "jest --projects test_ldap"
2525
},
2626
"engines": {
27-
"node": ">=18.12.0"
27+
"node": ">=20"
2828
},
2929
"dependencies": {
3030
"@aws-sdk/client-s3": "^3.922.0",

prisma/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18-bookworm-slim
1+
FROM node:20-bookworm-slim
22
ENV DEBIAN_FRONTEND=noninteractive
33
RUN apt update && apt install -y libssl3 && rm -rf /var/lib/apt/lists/*
44

0 commit comments

Comments
 (0)