From 084c9ae367f1d94e86c8d72adcb4b6e36bcf5b31 Mon Sep 17 00:00:00 2001 From: mygreen Date: Tue, 2 Jan 2024 20:26:39 +0900 Subject: [PATCH] Update maven.yml - maven version --- .github/workflows/maven.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 43907a20..f574cfca 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -22,10 +22,15 @@ jobs: sudo update-locale LC_ALL=ja_JP.UTF-8 - name: Set up Time-Zone run: sudo timedatectl set-timezone Asia/Tokyo - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + uses: actions/setup-java@v4 with: - java-version: 1.8 + distribution: 'corretto' + java-version: 8 + - name: Set up Maven + uses: stCarolas/setup-maven@v4.5 + with: + maven-version: 3.9.6 - name: Build with Maven run: mvn -B clean verify -Dgpg.skip=true