From b6efd0e08a3bd3c00e44f75a91f5a552af37f6c0 Mon Sep 17 00:00:00 2001 From: Jose Alberto Hernandez Date: Wed, 6 Sep 2023 07:37:16 -0600 Subject: [PATCH] Rollback to use Node 19 --- .github/workflows/build.yml | 6 +++--- Dockerfile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 32f4979ab8..fa7e0acd91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,13 +21,13 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - - name: Use Node.js 20 + - name: Use Node.js 19 uses: actions/setup-node@v1 with: # no support for lts as of now with github actions. # issue link : https://github.com/actions/setup-node/issues/26 - # lts/gallium node v20.5.1 (npm v9.8.0) - node-version: '20.5.1' + # lts/gallium node v19.7.0 (npm v9.5.0) + node-version: '19.7.0' - name: Angular CLI install run : npm install -g --silent @angular/cli@14.2.12 diff --git a/Dockerfile b/Dockerfile index f21c594f04..1de69bca34 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ############### ### STAGE 1: Build app ############### -ARG BUILDER_IMAGE=node:20-alpine +ARG BUILDER_IMAGE=node:19-alpine ARG NGINX_IMAGE=nginx:1.19.3 FROM $BUILDER_IMAGE as builder