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