Skip to content

Update actions/checkout action to v4 #2844

Update actions/checkout action to v4

Update actions/checkout action to v4 #2844

Workflow file for this run

name: Java CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019, windows-latest]
java: [17, 20, 21-ea]
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: zulu
- name: Test with Maven
run: ./mvnw test -B -D"license.skip=true"