Skip to content

Commit

Permalink
Go version currency - add 1.15 and deprecate 1.11 (#4987)
Browse files Browse the repository at this point in the history
Mark action kind go:1.11 as deprecated
Add action kind go:1.15 and make it default for Go actions.
  • Loading branch information
dgrove-oss authored Sep 30, 2020
1 parent 259186e commit b00678d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion ansible/files/runtimes.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -204,7 +218,7 @@
},
"image": {
"prefix": "openwhisk",
"name": "action-golang-v1.11",
"name": "action-golang-v1.15",
"tag": "nightly"
}
}
Expand Down

0 comments on commit b00678d

Please sign in to comment.