NO-TICKET: Bump Java 21 to Zulu 21.0.12.1-21.52 (fixes openjdk-jre High CVEs) - #51
Merged
Merged
Conversation
…e CVE fixes Co-authored-by: Cursor <cursoragent@cursor.com>
varkey98
approved these changes
Sep 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
One-line pin bump in
java-21/java.version:21.0.11-21.50→21.0.12.1-21.52This file pins the Azul Zulu OpenJDK build used by
java-21/Dockerfile(FROM azul/zulu-openjdk-debian:${JAVA_VERSION}→ jlink'd custom JRE → published as the floating taghypertrace/java:21).Why
Snyk container scans flag
openjdk-jre 21.0.11(the current pin) with 2 High CVEs whose fix version on the 21 train is 21.0.12 (July 2026 CPU). The new pin21.0.12.1-21.52is Azul's August 2026 build = OpenJDK 21.0.12.1, which includes the July 2026 CPU plus Azul's August 2026 monthly security patch (CSPU).Every Traceable service image inherits this JRE via the
hypertrace/java:21floating tag (theorg.hypertrace.docker-java-application-plugingradle plugin defaultsbaseImagetohypertrace/java:<javaMajorVersion>; no service overrides it). Bumping this pin fixes the findings for all consuming services on their next image build — config-service is the immediate blocker (its PRs are gated by a Snyk container scan).Verification
The target tag is verified to exist on Docker Hub:
azul/zulu-openjdk-debian:21.0.12.1-21.52— multi-arch (amd64 + arm64), published 2026-09-10.Blast radius / publish flow
pr-build.yml) readsjava-21/java.versionand passes it as theJAVA_VERSIONbuild-arg todocker build, then Trivy-scans the built image — so this PR's checks validate the new pin end-to-end.publish.ymltriggers on release creation (or manualworkflow_dispatch), building multi-arch and pushinghypertrace/java:21+hypertrace/java:21.0.12.1. A release must be cut after merge for the floating tag to update.hypertrace/java:21pick up the fix on their next image rebuild; unblocks the config-service Snyk gate.Made with Cursor