From d8fe0f67bf9640b56d22f5fa4702816546ba0fce Mon Sep 17 00:00:00 2001 From: Ennui Langeweile <85590273+EnnuiL@users.noreply.github.com> Date: Thu, 29 Feb 2024 01:43:05 -0300 Subject: [PATCH] Update GHA Workflow --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd1b9c1..347744c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,15 +8,15 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Set up Eclipse Temurin 20 - uses: actions/setup-java@v3 + - name: Set up Eclipse Temurin 21 + uses: actions/setup-java@v4 with: distribution: temurin - java-version: 20 + java-version: 21 - name: Build with Gradle run: gradle build - name: Upload build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-artifacts path: build/libs