Skip to content

Commit

Permalink
update build.yml to use newer jdks.
Browse files Browse the repository at this point in the history
  • Loading branch information
cardillo committed Nov 21, 2023
1 parent 40e113e commit aa7f074
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
java: [ 8, 11 ]
java: [ 16, 17, 18 ]

runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: setup-java
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
distribution: 'zulu'
- name: cache repo
uses: actions/cache@v2
with:
Expand Down

0 comments on commit aa7f074

Please sign in to comment.