From 2949c7ba5ac7b5d12d0658a57b86b9f5b4e9ec4a Mon Sep 17 00:00:00 2001 From: seasnail Date: Tue, 31 Aug 2021 15:50:17 +0100 Subject: [PATCH] Update pull_request.yml --- .github/workflows/pull_request.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index c9eb605..cfc3f82 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -14,17 +14,20 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@latest + - name: Setup JDK 16 - uses: actions/setup-java@v2 + uses: actions/setup-java@latest with: java-version: 16 distribution: adopt + - name: Build run: | chmod +x ./gradlew ./gradlew build - - name: Upload build artifacts + + - name: Upload artifacts uses: actions/upload-artifact@v2.2.4 with: name: build-artifacts