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 2020/09/30 12:18:40 UTC

[openwhisk] branch master updated: Go version currency - add 1.15 and deprecate 1.11 (#4987)

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


The following commit(s) were added to refs/heads/master by this push:
     new b00678d  Go version currency - add 1.15 and deprecate 1.11 (#4987)
b00678d is described below

commit b00678d30604d0ffb45792fdcd4b61714cfffd1c
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Wed Sep 30 08:18:19 2020 -0400

    Go version currency - add 1.15 and deprecate 1.11 (#4987)
    
    Mark action kind go:1.11 as deprecated
    Add action kind go:1.15 and make it default for Go actions.
---
 ansible/files/runtimes.json | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/ansible/files/runtimes.json b/ansible/files/runtimes.json
index c236451..573d376 100644
--- a/ansible/files/runtimes.json
+++ b/ansible/files/runtimes.json
@@ -196,6 +196,20 @@
         "go": [
             {
                 "kind": "go:1.11",
+                "default": false,
+                "deprecated": true,
+                "attached": {
+                    "attachmentName": "codefile",
+                    "attachmentType": "text/plain"
+                },
+                "image": {
+                    "prefix": "openwhisk",
+                    "name": "action-golang-v1.11",
+                    "tag": "nightly"
+                }
+            },
+            {
+                "kind": "go:1.15",
                 "default": true,
                 "deprecated": false,
                 "attached": {
@@ -204,7 +218,7 @@
                 },
                 "image": {
                     "prefix": "openwhisk",
-                    "name": "action-golang-v1.11",
+                    "name": "action-golang-v1.15",
                     "tag": "nightly"
                 }
             }