Skip to content

Commit

Permalink
add jdk 17 to build maven
Browse files Browse the repository at this point in the history
  • Loading branch information
yanavasileva committed Sep 8, 2023
1 parent 88f51f9 commit 83155b4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17' ]

name: Java ${{ matrix.Java }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -16,7 +21,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
java-version: ${{ matrix.java }}

- name: Cache
uses: actions/cache@v3
Expand Down

0 comments on commit 83155b4

Please sign in to comment.