# HG changeset patch
# User Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
# Date 1695910886 -7200
# Node ID 3b09f0c93cdd0a976d56a8c61e42e61d739c16cb
# Parent  c134c1dfc223b2c6b2a13e0d6b9aa7645632157c
Oracle JDK is only supported for JDK 17 and later

diff --git a/.github/workflows/jdkversions.yml b/.github/workflows/jdkversions.yml
--- a/.github/workflows/jdkversions.yml
+++ b/.github/workflows/jdkversions.yml
@@ -1,6 +1,8 @@
 # This workflow will build a Java project with Maven
 # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
 
+# Note: Oracle JDK is only supported for JDK 17 and later
+
 name: Test with various JDK versions
 
 on: [push]
@@ -22,6 +24,8 @@ jobs:
           - 21
         exclude:
           - distribution: oracle
+            java_version: 8
+          - distribution: oracle
             java_version: 11
 
     services: