From dcafb07c0e88e7971fee434b76df86689537b6c8 Mon Sep 17 00:00:00 2001 From: Ramin Date: Sun, 20 Jul 2025 15:02:41 +0330 Subject: [PATCH] change node version --- .github/workflows/main-pipeline.yml | 2 +- .github/workflows/staging-pipeline.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main-pipeline.yml b/.github/workflows/main-pipeline.yml index 7dbfb0a..84f5d79 100644 --- a/.github/workflows/main-pipeline.yml +++ b/.github/workflows/main-pipeline.yml @@ -43,7 +43,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: 20.14.0 + node-version: 20.18.0 - name: Install dependencies run: yarn install - name: Run linter diff --git a/.github/workflows/staging-pipeline.yml b/.github/workflows/staging-pipeline.yml index 59ae8c2..d3d626f 100644 --- a/.github/workflows/staging-pipeline.yml +++ b/.github/workflows/staging-pipeline.yml @@ -41,7 +41,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: 20.14.0 + node-version: 20.18.0 - name: Install Yarn run: npm install -g yarn - name: Install dependencies diff --git a/Dockerfile b/Dockerfile index 7cce7b4..884c5bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ #https://hub.docker.com/_/node?tab=tags&page=1 -FROM node:20.14.0 +FROM node:20.18.0 WORKDIR /usr/src/app