From b00678d30604d0ffb45792fdcd4b61714cfffd1c Mon Sep 17 00:00:00 2001
From: David Grove <dgrove-oss@users.noreply.github.com>
Date: Wed, 30 Sep 2020 08:18:19 -0400
Subject: [PATCH] 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 c236451a5e5..573d3762339 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"
                 }
             }