Skip to content

Commit 3e88e88

Browse files
authored
Merge 608990b into f0e281e
2 parents f0e281e + 608990b commit 3e88e88

File tree

3 files changed

+83
-7
lines changed

3 files changed

+83
-7
lines changed

ansible/files/runtimes-nodeonly.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"runtime families or runtime kinds, mark all affected runtime kinds as deprecated (deprecated: true) and",
1111
"perform a manual migration of all affected actions.",
1212
"",
13-
"This file is meant to list a small set of runtimes used by Travis system tests. Using a small set of runtimes",
13+
"This file is meant to list a small set of runtimes used by the GitHub Action system tests. Using a small set of runtimes",
1414
"instead of all runtimes maintained by the Apache Openwhisk community speeds up tests."
1515
],
1616
"runtimes": {

ansible/files/runtimes.json

Lines changed: 75 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,20 @@
5454
"attachmentName": "codefile",
5555
"attachmentType": "text/plain"
5656
}
57+
},
58+
{
59+
"kind": "nodejs:18",
60+
"default": false,
61+
"image": {
62+
"prefix": "openwhisk",
63+
"name": "action-nodejs-v18",
64+
"tag": "nightly"
65+
},
66+
"deprecated": false,
67+
"attached": {
68+
"attachmentName": "codefile",
69+
"attachmentType": "text/plain"
70+
}
5771
}
5872
],
5973
"python": [
@@ -70,6 +84,20 @@
7084
"attachmentName": "codefile",
7185
"attachmentType": "text/plain"
7286
}
87+
},
88+
{
89+
"kind": "python:3.10",
90+
"default": false,
91+
"image": {
92+
"prefix": "openwhisk",
93+
"name": "action-python-v3.10",
94+
"tag": "nightly"
95+
},
96+
"deprecated": false,
97+
"attached": {
98+
"attachmentName": "codefile",
99+
"attachmentType": "text/plain"
100+
}
73101
}
74102
],
75103
"swift": [
@@ -137,7 +165,7 @@
137165
{
138166
"kind": "php:7.3",
139167
"default": false,
140-
"deprecated": false,
168+
"deprecated": true,
141169
"image": {
142170
"prefix": "openwhisk",
143171
"name": "action-php-v7.3",
@@ -175,6 +203,20 @@
175203
"attachmentName": "codefile",
176204
"attachmentType": "text/plain"
177205
}
206+
},
207+
{
208+
"kind": "php:8.1",
209+
"default": false,
210+
"deprecated": false,
211+
"image": {
212+
"prefix": "openwhisk",
213+
"name": "action-php-v8.1",
214+
"tag": "nightly"
215+
},
216+
"attached": {
217+
"attachmentName": "codefile",
218+
"attachmentType": "text/plain"
219+
}
178220
}
179221
],
180222
"ruby": [
@@ -207,13 +249,27 @@
207249
"name": "action-golang-v1.17",
208250
"tag": "nightly"
209251
}
252+
},
253+
{
254+
"kind": "go:1.20",
255+
"default": false,
256+
"deprecated": false,
257+
"attached": {
258+
"attachmentName": "codefile",
259+
"attachmentType": "text/plain"
260+
},
261+
"image": {
262+
"prefix": "openwhisk",
263+
"name": "action-golang-v1.20",
264+
"tag": "nightly"
265+
}
210266
}
211267
],
212268
"dotnet": [
213269
{
214270
"kind": "dotnet:2.2",
215-
"default": true,
216-
"deprecated": false,
271+
"default": false,
272+
"deprecated": true,
217273
"requireMain": true,
218274
"image": {
219275
"prefix": "openwhisk",
@@ -227,7 +283,7 @@
227283
},
228284
{
229285
"kind": "dotnet:3.1",
230-
"default": false,
286+
"default": true,
231287
"deprecated": false,
232288
"requireMain": true,
233289
"image": {
@@ -239,6 +295,21 @@
239295
"attachmentName": "codefile",
240296
"attachmentType": "text/plain"
241297
}
298+
},
299+
{
300+
"kind": "dotnet:6.0",
301+
"default": false,
302+
"deprecated": false,
303+
"requireMain": true,
304+
"image": {
305+
"prefix": "openwhisk",
306+
"name": "action-dotnet-v6.0",
307+
"tag": "nightly"
308+
},
309+
"attached": {
310+
"attachmentName": "codefile",
311+
"attachmentType": "text/plain"
312+
}
242313
}
243314
],
244315
"rust": [

core/controller/src/main/resources/apiv1swagger.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1996,18 +1996,22 @@
19961996
"blackbox",
19971997
"java:8",
19981998
"java:default",
1999-
"nodejs:12",
20001999
"nodejs:14",
2000+
"nodejs:16",
2001+
"nodejs:18",
20012002
"nodejs:default",
20022003
"php:7.3",
20032004
"php:7.4",
20042005
"php:8.0",
2006+
"php:8.1",
20052007
"php:default",
20062008
"python:3",
2009+
"python:3.10",
20072010
"python:default",
20082011
"ruby:2.5",
20092012
"ruby:default",
2010-
"go:1.15",
2013+
"go:1.17",
2014+
"go:1.20",
20112015
"go:default",
20122016
"sequence",
20132017
"swift:5.1",
@@ -2016,6 +2020,7 @@
20162020
"swift:default",
20172021
"dotnet:2.2",
20182022
"dotnet:3.1",
2023+
"dotnet:6.0",
20192024
"dotnet:default",
20202025
"rust:1.34",
20212026
"rust:default"

0 commit comments

Comments
 (0)