From c26d6c0d7c38264a1aab7d302ddbc10671457788 Mon Sep 17 00:00:00 2001
From: Dave Wichers <dave.wichers@owasp.org>
Date: Fri, 17 Jan 2025 20:11:30 -0500
Subject: [PATCH] Update maven.yml

Upgrade from Java 8 to Java 11
---
 .github/workflows/maven.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index e3af53a..d59ee1b 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -13,10 +13,10 @@ jobs:
     - uses: actions/checkout@v4
       with:
         fetch-depth: 0
-    - name: Set up JDK 1.8
+    - name: Set up JDK 11
       uses: actions/setup-java@v4
       with:
-        java-version: 8
+        java-version: 11
         distribution: zulu
     - name: Run unit tests
       run: mvn test