Skip to content

Commit f88ff01

Browse files
committed
update JDK 17 to the latest bug fix release
Updated due to a bug that was found with the Protobuf mutator
1 parent 37d1fcd commit f88ff01

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

infra/base-images/base-builder/install_java.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717

1818
# Install OpenJDK 17 and trim its size by removing unused components. This enables using Jazzer's mutation framework.
1919
cd /tmp
20-
curl --silent -L -O https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.16+8/OpenJDK17U-jdk_x64_linux_hotspot_17.0.16_8.tar.gz && \
20+
curl --silent -L -O https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.9%2B9/OpenJDK17U-jdk_x64_linux_hotspot_17.0.9_9.tar.gz && \
2121
mkdir -p $JAVA_HOME
22-
tar -xz --strip-components=1 -f OpenJDK17U-jdk_x64_linux_hotspot_17.0.16_8.tar.gz --directory $JAVA_HOME && \
23-
rm -f OpenJDK17U-jdk_x64_linux_hotspot_17.0.16_8.tar.gz
22+
tar -xz --strip-components=1 -f OpenJDK17U-jdk_x64_linux_hotspot_17.0.9_9.tar.gz --directory $JAVA_HOME && \
23+
rm -f OpenJDK17U-jdk_x64_linux_hotspot_17.0.9_9.tar.gz
2424
rm -rf $JAVA_HOME/jmods $JAVA_HOME/lib/src.zip
2525

2626
# Install OpenJDK 15 and trim its size by removing unused components. Some projects only run with Java 15.

0 commit comments

Comments
 (0)