File tree 3 files changed +10
-5
lines changed
3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 8
8
versioned = {
9
9
"nodejs" : {
10
10
"default" : "18" ,
11
- "additional" : ["20" , "22" ]
11
+ "additional" : ["20" , "22" , "23" ]
12
12
},
13
13
"python" : {
14
14
"default" : "3.9" ,
15
- "additional" : ["3.10" , "3.11" , "3.12" ]
15
+ "additional" : ["3.10" , "3.11" , "3.12" , "3.13" ]
16
16
},
17
17
"dotnet" : {
18
18
"default" : "6.0" ,
Original file line number Diff line number Diff line change @@ -426,16 +426,18 @@ jobs:
426
426
- uses : actions/checkout@master
427
427
- name : Define Matrix for UBI SDK Manifests
428
428
id : define-matrix-sdk-manifests
429
- # Filter out the nodejs 22 and version from the matrix, as it is not supported on UBI.
429
+ # Filter out the nodejs 22 and 23 versions from the matrix, as they are not supported on UBI.
430
430
# https://access.redhat.com/articles/3376841
431
- # Filter out the python 3.10 version from the matrix, as it is not supported on UBI.
431
+ # Filter out the python 3.10 and 3.13 versions from the matrix, as they are supported on UBI.
432
432
# https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/9/html/installing_and_using_dynamic_programming_languages/assembly_introduction-to-python_installing-and-using-dynamic-programming-languages#con_python-versions_assembly_introduction-to-python
433
433
run : |
434
434
echo matrix=$(python ./.github/scripts/matrix/gen-matrix.py --no-arch |
435
435
jq '.include |= map(
436
436
select(
437
437
(.sdk != "nodejs" or .language_version != "22") and
438
- (.sdk != "python" or .language_version != "3.10")
438
+ (.sdk != "nodejs" or .language_version != "23") and
439
+ (.sdk != "python" or .language_version != "3.10") and
440
+ (.sdk != "python" or .language_version != "3.13")
439
441
)
440
442
)') >> "$GITHUB_OUTPUT"
441
443
Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ - Add Node.js 23 and Python 3.13 to the kitchen sink and as per-language versions
6
+ ([ #309 ] ( https://github.com/pulumi/pulumi-docker-containers/pull/309 )
7
+
5
8
- Add nonroot variant for the kitchen sink image
6
9
([ #277 ] ( https://github.com/pulumi/pulumi-docker-containers/pull/277 )
7
10
You can’t perform that action at this time.
0 commit comments