From 81a4e08996e72c98d4a5b866202400fe9290ac2f Mon Sep 17 00:00:00 2001 From: Drew Baugher <46505179+dbbaughe@users.noreply.github.com> Date: Mon, 6 Apr 2020 14:01:01 -0700 Subject: [PATCH] Update test-and-build-workflow.yml --- .github/workflows/test-and-build-workflow.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-and-build-workflow.yml b/.github/workflows/test-and-build-workflow.yml index 0dca5b0da..6f48fd719 100644 --- a/.github/workflows/test-and-build-workflow.yml +++ b/.github/workflows/test-and-build-workflow.yml @@ -8,9 +8,6 @@ on: jobs: build: - strategy: - matrix: - java: [12] # Job name name: Build Index Management # This job runs on Linux @@ -20,10 +17,10 @@ jobs: - name: Checkout Branch uses: actions/checkout@v1 # This step uses the setup-java Github action: https://github.com/actions/setup-java - - name: Set Up JDK ${{ matrix.java }} + - name: Set Up JDK 12 uses: actions/setup-java@v1 with: - java-version: ${{ matrix.java }} + java-version: 12 - name: Build with Gradle run: ./gradlew build - name: Create Artifact Path