Skip to content

update language runtimes to use newer versions #5381

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ansible/files/runtimes-nodeonly.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"runtime families or runtime kinds, mark all affected runtime kinds as deprecated (deprecated: true) and",
"perform a manual migration of all affected actions.",
"",
"This file is meant to list a small set of runtimes used by Travis system tests. Using a small set of runtimes",
"This file is meant to list a small set of runtimes used by the GitHub Action system tests. Using a small set of runtimes",
"instead of all runtimes maintained by the Apache Openwhisk community speeds up tests."
],
"runtimes": {
Expand Down
79 changes: 75 additions & 4 deletions ansible/files/runtimes.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,20 @@
"attachmentName": "codefile",
"attachmentType": "text/plain"
}
},
{
"kind": "nodejs:18",
"default": false,
"image": {
"prefix": "openwhisk",
"name": "action-nodejs-v18",
"tag": "nightly"
},
"deprecated": false,
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
}
}
],
"python": [
Expand All @@ -70,6 +84,20 @@
"attachmentName": "codefile",
"attachmentType": "text/plain"
}
},
{
"kind": "python:3.10",
"default": false,
"image": {
"prefix": "openwhisk",
"name": "action-python-v3.10",
"tag": "nightly"
},
"deprecated": false,
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
}
}
],
"swift": [
Expand Down Expand Up @@ -137,7 +165,7 @@
{
"kind": "php:7.3",
"default": false,
"deprecated": false,
"deprecated": true,
"image": {
"prefix": "openwhisk",
"name": "action-php-v7.3",
Expand Down Expand Up @@ -175,6 +203,20 @@
"attachmentName": "codefile",
"attachmentType": "text/plain"
}
},
{
"kind": "php:8.1",
"default": false,
"deprecated": false,
"image": {
"prefix": "openwhisk",
"name": "action-php-v8.1",
"tag": "nightly"
},
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
}
}
],
"ruby": [
Expand Down Expand Up @@ -207,13 +249,27 @@
"name": "action-golang-v1.17",
"tag": "nightly"
}
},
{
"kind": "go:1.20",
"default": false,
"deprecated": false,
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"image": {
"prefix": "openwhisk",
"name": "action-golang-v1.20",
"tag": "nightly"
}
}
],
"dotnet": [
{
"kind": "dotnet:2.2",
"default": true,
"deprecated": false,
"default": false,
"deprecated": true,
"requireMain": true,
"image": {
"prefix": "openwhisk",
Expand All @@ -227,7 +283,7 @@
},
{
"kind": "dotnet:3.1",
"default": false,
"default": true,
"deprecated": false,
"requireMain": true,
"image": {
Expand All @@ -239,6 +295,21 @@
"attachmentName": "codefile",
"attachmentType": "text/plain"
}
},
{
"kind": "dotnet:6.0",
"default": false,
"deprecated": false,
"requireMain": true,
"image": {
"prefix": "openwhisk",
"name": "action-dotnet-v6.0",
"tag": "nightly"
},
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
}
}
],
"rust": [
Expand Down
9 changes: 7 additions & 2 deletions core/controller/src/main/resources/apiv1swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1996,18 +1996,22 @@
"blackbox",
"java:8",
"java:default",
"nodejs:12",
"nodejs:14",
"nodejs:16",
"nodejs:18",
"nodejs:default",
"php:7.3",
"php:7.4",
"php:8.0",
"php:8.1",
"php:default",
"python:3",
"python:3.10",
"python:default",
"ruby:2.5",
"ruby:default",
"go:1.15",
"go:1.17",
"go:1.20",
"go:default",
"sequence",
"swift:5.1",
Expand All @@ -2016,6 +2020,7 @@
"swift:default",
"dotnet:2.2",
"dotnet:3.1",
"dotnet:6.0",
"dotnet:default",
"rust:1.34",
"rust:default"
Expand Down