diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 8d10b866..8d4ac2ba 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -84,8 +84,11 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 18 - - name: Test environment setup - uses: ./.github/actions/ci-setup + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: ${{ env.JDK_VERSION }} + distribution: ${{ env.JDK_DISTRIBUTION }} - name: Install dependencies working-directory: docs run: yarn @@ -114,8 +117,11 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Test environment setup - uses: ./.github/actions/ci-setup + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: ${{ env.JDK_VERSION }} + distribution: ${{ env.JDK_DISTRIBUTION }} - name: Build App WAR file so that Docker can pickup during image build run: mvn clean package - name: Set up QEMU