Skip to content

Commit

Permalink
Add Node.js 23 and Python 3.13 to the kitchen sink and as per-languag…
Browse files Browse the repository at this point in the history
…e versions (#309)

New language versions are out, let’s get then into the kitchen sink and
as slim language specific versions.
  • Loading branch information
julienp authored Oct 30, 2024
1 parent d18d97c commit 9b5f577
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/matrix/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
versioned = {
"nodejs": {
"default": "18",
"additional": ["20", "22"]
"additional": ["20", "22", "23"]
},
"python": {
"default": "3.9",
"additional": ["3.10", "3.11", "3.12"]
"additional": ["3.10", "3.11", "3.12", "3.13"]
},
"dotnet": {
"default": "6.0",
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -426,16 +426,18 @@ jobs:
- uses: actions/checkout@master
- name: Define Matrix for UBI SDK Manifests
id: define-matrix-sdk-manifests
# Filter out the nodejs 22 and version from the matrix, as it is not supported on UBI.
# Filter out the nodejs 22 and 23 versions from the matrix, as they are not supported on UBI.
# https://access.redhat.com/articles/3376841
# Filter out the python 3.10 version from the matrix, as it is not supported on UBI.
# Filter out the python 3.10 and 3.13 versions from the matrix, as they are supported on UBI.
# 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
run: |
echo matrix=$(python ./.github/scripts/matrix/gen-matrix.py --no-arch |
jq '.include |= map(
select(
(.sdk != "nodejs" or .language_version != "22") and
(.sdk != "python" or .language_version != "3.10")
(.sdk != "nodejs" or .language_version != "23") and
(.sdk != "python" or .language_version != "3.10") and
(.sdk != "python" or .language_version != "3.13")
)
)') >> "$GITHUB_OUTPUT"
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Add Node.js 23 and Python 3.13 to the kitchen sink and as per-language versions
([#309](https://github.com/pulumi/pulumi-docker-containers/pull/309)

- Add nonroot variant for the kitchen sink image
([#277](https://github.com/pulumi/pulumi-docker-containers/pull/277)

Expand Down

0 comments on commit 9b5f577

Please sign in to comment.