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

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


The following commit(s) were added to refs/heads/master by this push:
     new eeae4b6  replace the last few uses of nodejs@6 with nodejs@10 (#1089)
eeae4b6 is described below

commit eeae4b68f702052179c2e316ed1a911a4da609be
Author: David Grove <[email protected]>
AuthorDate: Wed Feb 19 17:32:00 2020 -0500

    replace the last few uses of nodejs@6 with nodejs@10 (#1089)
---
 docs/examples/manifest_hello_world_runtime.yaml           | 4 ++--
 docs/wskdeploy_action_advanced_parms.md                   | 2 +-
 docs/wskdeploy_action_runtime.md                          | 4 ++--
 tests/dat/deployment_data_action_with_inputs_outputs.yaml | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/examples/manifest_hello_world_runtime.yaml 
b/docs/examples/manifest_hello_world_runtime.yaml
index d9bd9ee..cbdc90c 100644
--- a/docs/examples/manifest_hello_world_runtime.yaml
+++ b/docs/examples/manifest_hello_world_runtime.yaml
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 
-# Example: explicit selection of the NodeJS version 6 runtime
+# Example: explicit selection of the NodeJS version 10 runtime
 packages:
   hello_world_package:
     version: 1.0
@@ -23,4 +23,4 @@ packages:
     actions:
       hello_world_runtime:
         function: src/hello.js
-        runtime: nodejs@6
+        runtime: nodejs@10
diff --git a/docs/wskdeploy_action_advanced_parms.md 
b/docs/wskdeploy_action_advanced_parms.md
index e2229a0..99a75c7 100644
--- a/docs/wskdeploy_action_advanced_parms.md
+++ b/docs/wskdeploy_action_advanced_parms.md
@@ -37,7 +37,7 @@ packages:
     actions:
       hello_world_advanced_parms:
         function: src/hello_plus.js
-        runtime: nodejs@6
+        runtime: nodejs@10
         inputs:
           name:
             type: string
diff --git a/docs/wskdeploy_action_runtime.md b/docs/wskdeploy_action_runtime.md
index bebfd48..67da5b3 100644
--- a/docs/wskdeploy_action_runtime.md
+++ b/docs/wskdeploy_action_runtime.md
@@ -29,7 +29,7 @@ This example shows how to:
 - declare an explicit runtime for your Action's function.
 
 ### Manifest file
-#### _Example: explicit selection of the NodeJS version 6 runtime_
+#### _Example: explicit selection of the NodeJS version 10 runtime_
 ```yaml
 packages:
   hello_world_package:
@@ -38,7 +38,7 @@ packages:
     actions:
       hello_world_runtime:
         function: src/hello.js
-        runtime: nodejs@6
+        runtime: nodejs@10
 ```
 
 ### Deploying
diff --git a/tests/dat/deployment_data_action_with_inputs_outputs.yaml 
b/tests/dat/deployment_data_action_with_inputs_outputs.yaml
index 0e0d59f..5755f6d 100644
--- a/tests/dat/deployment_data_action_with_inputs_outputs.yaml
+++ b/tests/dat/deployment_data_action_with_inputs_outputs.yaml
@@ -39,7 +39,7 @@ packages:
           description: "output notice string"
           name: notice
           type: string
-      runtime: nodejs@6
+      runtime: nodejs@10
       version: 1.0
   license: Apache-2.0
   packagename: helloworld

Reply via email to