From e287ad47d1075cef49f209a555fe93b1d2081d14 Mon Sep 17 00:00:00 2001 From: Robert Alan Chapton Date: Mon, 8 Nov 2021 18:54:46 -0800 Subject: [PATCH] updating github actions hope this works --- .github/workflows/maven.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 447aa61ba..bea64e883 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -31,12 +31,13 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - # 2. Setup Java 1.8 JDK - - name: Java 1.8 setup - uses: actions/setup-java@v1.4.3 + # 2. Setup Java 16 JDK (Adopt) + - name: Java 16 setup + uses: actions/setup-java@v2 with: + distribution: 'adopt' java-package: jdk - java-version: 1.8 + java-version: '16' # 3. Setup local Maven package cache to speed up building - name: Cache Maven packages