From 4cfaac27679dcf47f5235f2cb6a18ef59fdda414 Mon Sep 17 00:00:00 2001 From: kitakkun <48154936+kitakkun@users.noreply.github.com> Date: Sat, 6 Jul 2024 20:18:37 +0900 Subject: [PATCH] add JDK setup step --- .github/workflows/review.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/review.yaml b/.github/workflows/review.yaml index 7dbba4be..ef9ed8b1 100644 --- a/.github/workflows/review.yaml +++ b/.github/workflows/review.yaml @@ -49,6 +49,12 @@ jobs: - name: Check out repository uses: actions/checkout@v4 + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'adopt' + - name: Set up node uses: actions/setup-node@v4 with: