From b6e91e73e7980aa9c40b4a39ed79f62c42813f56 Mon Sep 17 00:00:00 2001 From: Denys Butenko Date: Wed, 12 Apr 2023 21:33:01 +0700 Subject: [PATCH] NAS-121402 / 23.10 / Upgrade node to hydrogen (18 LTS) (#8054) --- .github/actions/prepare/action.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/prepare/action.yml b/.github/actions/prepare/action.yml index cceb9b36f32..56e2f22d4b8 100644 --- a/.github/actions/prepare/action.yml +++ b/.github/actions/prepare/action.yml @@ -7,7 +7,7 @@ runs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '18' cache: 'yarn' - name: Install packages shell: bash diff --git a/Dockerfile b/Dockerfile index 0db1c7e5e70..8a044966665 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ##NODE temporary builder image -from node:16-buster as uibuilder +from node:18-buster as uibuilder COPY ./ /src-ui WORKDIR /src-ui RUN yarn install --frozen-lockfile