diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 68238492d..0e32254b0 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -7,11 +7,15 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - java-version: 1.8 + node-version: 20 + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: 17 - name: Build with Maven run: mvn -B package --file pom.xml - name: Release