Skip to content

Commit

Permalink
Merge pull request #773 from robstoll/drop-support-for-jdk9
Browse files Browse the repository at this point in the history
do no longer build against jdk 9 we drop support for it
  • Loading branch information
robstoll committed Jan 8, 2021
2 parents 90ba50f + 3351c63 commit 3ba54bf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: true
matrix:
java_version: [ 9, 11, 14 ]
java_version: [ 11, 14 ]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: true
matrix:
java_version: [ 9, 11, 14 ]
java_version: [ 11, 14 ]

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/check-generated-committed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,12 @@ on:
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: true
matrix:
java_version: [ 11 ]
steps:
- uses: actions/checkout@v2
- name: "Set up JDK ${{ matrix.java_version }}"
- name: "Set up JDK 11"
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java_version }}
java-version: 11

- name: check generateLogic committed
run: ./gradle/scripts/check-generateLogic-committed.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/samples-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: true
matrix:
java_version: [ 9, 11, 14 ]
java_version: [ 11, 14 ]

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 3ba54bf

Please sign in to comment.