From 1cbc6af9f96fad82771141f4e3213b9f5ea3d492 Mon Sep 17 00:00:00 2001 From: downfa11 <124482256+downfa11@users.noreply.github.com> Date: Fri, 13 Dec 2024 14:29:23 +0900 Subject: [PATCH] chore: JDK upgrade to 17 --- .github/workflows/Deployment.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/Deployment.yml b/.github/workflows/Deployment.yml index eee655d..edaa8a5 100644 --- a/.github/workflows/Deployment.yml +++ b/.github/workflows/Deployment.yml @@ -18,6 +18,12 @@ jobs: - name: Grant execute permission for gradlew run: chmod +x ./gradlew + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + - name: Run tests run: ./gradlew test