Update to latest LTS version(s).#147
Conversation
d3r3kk
left a comment
There was a problem hiding this comment.
LGTM - I wonder if we can automate this - we have to do the update every time... perhaps that is by design though.
Yeah, that has been on my mind to implement some sort of automation. Either here on in ADO once the images are built. |
There was a problem hiding this comment.
Pull request overview
This PR updates the GitHub Actions workflows that validate/baseline the published OpenJDK container images so they assert against the latest expected MS OpenJDK patch versions from the April PSU.
Changes:
- Bump expected MS OpenJDK versions for majors 11/17/21/25 in the “validate published images” workflow.
- Bump expected MS OpenJDK versions for majors 11/17/21/25 in the “check expected versions” workflow and reformat the matrix entries to a multiline list.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/validate-published-images.yml | Updates expected msopenjdk patch versions used when validating already-published images. |
| .github/workflows/check-versions.yml | Updates expected msopenjdk patch versions used when locally building and validating images (and reformats the matrix list). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| { major: "11", expected: "11.0.31" }, | ||
| { major: "17", expected: "17.0.19" }, | ||
| { major: "21", expected: "21.0.11" }, | ||
| { major: "25", expected: "25.0.3" }, |
There was a problem hiding this comment.
The jdkversion flow sequence ends with a trailing comma after the last element ({ major: "25", ... },). Trailing commas are not valid in YAML flow collections and can cause this workflow to fail to parse. Remove the trailing comma on the final entry (or convert to a block sequence with - items).
| { major: "25", expected: "25.0.3" }, | |
| { major: "25", expected: "25.0.3" } |
This change updates the check version workflows to check for the latest LTS versions built and published during the April PSU.