Skip to content

Commit f96a4f3

Browse files
mlim19claude
andcommitted
Fix GitHub Actions test failures by replacing deprecated openjdk:11-jdk image
The openjdk:11-jdk Docker image has been deprecated and removed from Docker Hub, causing test failures in test-container-x64 jobs across all Python versions. Replace openjdk:11-jdk with eclipse-temurin:11-jdk, which is the official successor and actively maintained by the Eclipse Foundation. This is consistent with other JDK images already used in the test suite. Fixes: - test_collect_default_jvm_flags[hotspot-jdk-11-expected_flags1-True] - test_collect_cmdline_and_env_jvm_flags[hotspot-jdk-11-expected_flags1-True--XX:SelfDestructTimer=5--XX:+PrintCodeCache] 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent acea67f commit f96a4f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def application_pid(
290290
"java": {
291291
"": {},
292292
"hotspot-jdk-8": {}, # add for clarity when testing with multiple JDKs
293-
"hotspot-jdk-11": dict(buildargs={"JAVA_BASE_IMAGE": "openjdk:11-jdk"}),
293+
"hotspot-jdk-11": dict(buildargs={"JAVA_BASE_IMAGE": "eclipse-temurin:11-jdk"}),
294294
"j9": dict(buildargs={"JAVA_BASE_IMAGE": "adoptopenjdk/openjdk8-openj9"}),
295295
"eclipse-temurin-latest": dict(buildargs={"JAVA_BASE_IMAGE": "eclipse-temurin:latest"}),
296296
"zing": dict(dockerfile="zing.Dockerfile"),

0 commit comments

Comments
 (0)