You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2021/04/30 13:18:41 UTC

[openwhisk-package-alarms] branch master updated: switch from Node.js 10 to Node.js 14 (#229)

This is an automated email from the ASF dual-hosted git repository.

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-package-alarms.git


The following commit(s) were added to refs/heads/master by this push:
     new 42439bd  switch from Node.js 10 to Node.js 14 (#229)
42439bd is described below

commit 42439bd80c22b09759e2ffb5ea5f2ce743f58205
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Fri Apr 30 09:18:34 2021 -0400

    switch from Node.js 10 to Node.js 14 (#229)
---
 Dockerfile        | 2 +-
 installCatalog.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 01b67ec..bf8b665 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 
-FROM node:10.24.0
+FROM node:14.16.1
 
 # only package.json
 ADD package.json /
diff --git a/installCatalog.sh b/installCatalog.sh
index 97f8b32..5abba16 100755
--- a/installCatalog.sh
+++ b/installCatalog.sh
@@ -53,7 +53,7 @@ DB_NAME="${6}alarmservice"
 DB_USERNAME="$7"
 DB_PASSWORD="$8"
 LIMIT_CRON_FIELDS="${LIMIT_CRON_FIELDS}"
-ACTION_RUNTIME_VERSION=${ACTION_RUNTIME_VERSION:="nodejs:10"}
+ACTION_RUNTIME_VERSION=${ACTION_RUNTIME_VERSION:="nodejs:14"}
 
 # If the auth key file exists, read the key in the file. Otherwise, take the
 # first argument as the key itself.