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