Skip to content
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
8 changes: 7 additions & 1 deletion .github/workflows/check-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,13 @@ jobs:
matrix:
distros: [ "azurelinux", "distroless", "ubuntu" ]
jdkvendor: [ "msopenjdk" ]
jdkversion: [ { major: "11", expected: "11.0.30" }, { major: "17", expected: "17.0.18" }, { major: "21", expected: "21.0.10" }, { major: "25", expected: "25.0.2" }]
jdkversion:
[
{ major: "11", expected: "11.0.31" },
{ major: "17", expected: "17.0.19" },
{ major: "21", expected: "21.0.11" },
{ major: "25", expected: "25.0.3" },
Copy link

Copilot AI May 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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).

Suggested change
{ major: "25", expected: "25.0.3" },
{ major: "25", expected: "25.0.3" }

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@joe-braley - Do we need to fix this?

]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/validate-published-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
jdkvendor: ["msopenjdk"]
jdkversion:
[
{ major: "11", expected: "11.0.30" },
{ major: "17", expected: "17.0.18" },
{ major: "21", expected: "21.0.10" },
{ major: "25", expected: "25.0.2" }
{ major: "11", expected: "11.0.31" },
{ major: "17", expected: "17.0.19" },
{ major: "21", expected: "21.0.11" },
{ major: "25", expected: "25.0.3" }
]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -60,10 +60,10 @@ jobs:
jdkvendor: ["msopenjdk"]
jdkversion:
[
{ major: "11", expected: "11.0.30" },
{ major: "17", expected: "17.0.18" },
{ major: "21", expected: "21.0.10" },
{ major: "25", expected: "25.0.2" }
{ major: "11", expected: "11.0.31" },
{ major: "17", expected: "17.0.19" },
{ major: "21", expected: "21.0.11" },
{ major: "25", expected: "25.0.3" }
]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
Loading