From c7a80d0e85aa4bdeed5e3ff6b12ce4d08fa4219e Mon Sep 17 00:00:00 2001 From: regexowl Date: Wed, 24 Jan 2024 09:46:25 +0100 Subject: [PATCH] node: Bump NODE_BUILD_VERSION This bumps NODE_BUILD_VERSION in `build_deploy` and `pr_check` scripts from the default 16 to version 18. --- build_deploy.sh | 2 +- pr_check.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build_deploy.sh b/build_deploy.sh index 792f0677..cbe4db67 100755 --- a/build_deploy.sh +++ b/build_deploy.sh @@ -9,7 +9,7 @@ export COMPONENT="image-builder" export IMAGE="quay.io/cloudservices/image-builder-frontend" export APP_ROOT=$(pwd) export WORKSPACE=${WORKSPACE:-$APP_ROOT} # if running in jenkins, use the build's workspace -export NODE_BUILD_VERSION=16 +export NODE_BUILD_VERSION=18 COMMON_BUILDER=https://raw.githubusercontent.com/RedHatInsights/insights-frontend-builder-common/master set -exv diff --git a/pr_check.sh b/pr_check.sh index 39d3b70e..e5ba26e6 100755 --- a/pr_check.sh +++ b/pr_check.sh @@ -10,7 +10,7 @@ export IMAGE="quay.io/cloudservices/image-builder-frontend" export WORKSPACE=${WORKSPACE:-$APP_ROOT} # if running in jenkins, use the build's workspace export APP_ROOT=$(pwd) #16 is the default Node version. Change this to override it. -export NODE_BUILD_VERSION=16 +export NODE_BUILD_VERSION=18 COMMON_BUILDER=https://raw.githubusercontent.com/RedHatInsights/insights-frontend-builder-common/master # --------------------------------------------