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 2022/08/16 12:33:17 UTC

[openwhisk-deploy-kube] branch master updated: update runtimes for nodejs and go (#742)

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-deploy-kube.git


The following commit(s) were added to refs/heads/master by this push:
     new 9e8f1c1  update runtimes for nodejs and go (#742)
9e8f1c1 is described below

commit 9e8f1c1fc0588e44f81eee0ec49dda30de0f6b7b
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Tue Aug 16 08:33:12 2022 -0400

    update runtimes for nodejs and go (#742)
---
 helm/openwhisk/runtimes.json | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/helm/openwhisk/runtimes.json b/helm/openwhisk/runtimes.json
index 96d85dd..58acca4 100644
--- a/helm/openwhisk/runtimes.json
+++ b/helm/openwhisk/runtimes.json
@@ -1,27 +1,13 @@
 {
     "runtimes": {
         "nodejs": [
-            {
-                "kind": "nodejs:12",
-                "default": false,
-                "image": {
-                    "prefix": "openwhisk",
-                    "name": "action-nodejs-v12",
-                    "tag": "1.19.0"
-                },
-                "deprecated": false,
-                "attached": {
-                    "attachmentName": "codefile",
-                    "attachmentType": "text/plain"
-                }
-            },
             {
                 "kind": "nodejs:14",
                 "default": true,
                 "image": {
                     "prefix": "openwhisk",
                     "name": "action-nodejs-v14",
-                    "tag": "1.19.0"
+                    "tag": "1.20.0"
                 },
                 "deprecated": false,
                 "attached": {
@@ -41,7 +27,21 @@
                         }
                     }
                 ]
-            }
+            },
+            {
+                "kind": "nodejs:16",
+                "default": false,
+                "image": {
+                    "prefix": "openwhisk",
+                    "name": "action-nodejs-v16",
+                    "tag": "1.20.0"
+                },
+                "deprecated": false,
+                "attached": {
+                    "attachmentName": "codefile",
+                    "attachmentType": "text/plain"
+                }
+            },
         ],
         "python": [
             {
@@ -196,7 +196,7 @@
         ],
         "go": [
             {
-                "kind": "go:1.15",
+                "kind": "go:1.17",
                 "default": true,
                 "deprecated": false,
                 "attached": {
@@ -205,8 +205,8 @@
                 },
                 "image": {
                     "prefix": "openwhisk",
-                    "name": "action-golang-v1.15",
-                    "tag": "1.18.0"
+                    "name": "action-golang-v1.17",
+                    "tag": "1.20.0"
                 }
             }
         ],