Skip to content

Commit

Permalink
Bump actions/setup-java from 1 to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed Aug 22, 2021
1 parent 1187c0b commit 2232c62
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:

strategy:
matrix:
os: [ubuntu-20.04, windows-latest, macOS-latest]
java: [7, 8, 11, 15, 16-ea]
os: [ubuntu-latest, windows-latest, macOS-latest]
java: [8, 11, 17-ea]
fail-fast: false

runs-on: ${{ matrix.os }}
Expand All @@ -43,9 +43,10 @@ jobs:
${{ runner.os }}-maven-
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2.2.0
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'

- name: Build with Maven
run: mvn verify -e -B -V -P run-its

0 comments on commit 2232c62

Please sign in to comment.