This is an automated email from the ASF dual-hosted git repository. klesh pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push: new 81e3149f0 chore: bumps node to 18 in builder image and actions (#6884) 81e3149f0 is described below commit 81e3149f0d3a72f82082c49727a53bf6c79fd2da Author: Wanis Fahmy <51237742+wanisfahm...@users.noreply.github.com> AuthorDate: Tue Jan 30 09:12:27 2024 +0100 chore: bumps node to 18 in builder image and actions (#6884) --- .github/workflows/config-ui.yml | 2 +- config-ui/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/config-ui.yml b/.github/workflows/config-ui.yml index 8fcf1e4e7..d4152860d 100644 --- a/.github/workflows/config-ui.yml +++ b/.github/workflows/config-ui.yml @@ -29,7 +29,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '18' cache: 'yarn' cache-dependency-path: config-ui/yarn.lock - name: Install with Yarn diff --git a/config-ui/Dockerfile b/config-ui/Dockerfile index 08c2b2ad8..78117ae2d 100644 --- a/config-ui/Dockerfile +++ b/config-ui/Dockerfile @@ -23,7 +23,7 @@ #While incubation status is not necessarily a reflection of the completeness or stability of the code, #it does indicate that the project has yet to be fully endorsed by the ASF. -FROM node:16 as builder +FROM node:18-bookworm-slim as builder WORKDIR /home/node/code COPY . .