Skip to content

Commit

Permalink
Remove support for JDK14 (opensearch-project#1720)
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Nied <petern@amazon.com>
  • Loading branch information
peternied committed Mar 31, 2022
1 parent 249f16d commit c650595
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:

- name: Set up JDK 14
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 14.0.x
java-version: 11

- name: Checkout security
uses: actions/checkout@v2
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ jobs:
strategy:
fail-fast: true
matrix:
jdk: [11, 14, 17]
jdk: [11, 17]

steps:

- name: Set up JDK for build and test
if: matrix.jdk != 17
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: temurin # Temurin is a distribution of adoptium
java-version: ${{ matrix.jdk }}
Expand Down

0 comments on commit c650595

Please sign in to comment.