From f98be5a1cedc93b8dba119085b4934b2dcb4b5db Mon Sep 17 00:00:00 2001 From: Carlos Esteban Feria Vila <2582866+carlosthe19916@users.noreply.github.com> Date: Sun, 24 May 2020 22:12:40 +0200 Subject: [PATCH] fix gh release action --- .github/workflows/release-actions.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-actions.yml b/.github/workflows/release-actions.yml index 421a73ea..f70cd069 100644 --- a/.github/workflows/release-actions.yml +++ b/.github/workflows/release-actions.yml @@ -6,16 +6,16 @@ on: - '*' jobs: - build-jdk11: - name: "JDK 11 Build" + build-jdk8: + name: "JDK 8 Build" runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Set up JDK 11 + - name: Set up JDK 8 # Uses sha for added security since tags can be updated uses: joschi/setup-jdk@b9cc6eabf7e7e3889766b5cee486f874c9e1bd2d with: - java-version: 11 + java-version: 8 - name: Build run: | mvn -e -B -DskipTests=true -DskipDocs clean install