aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2021-12-29 05:10:51 +0300
committerGravatar Vitaly Takmazov2021-12-29 05:12:33 +0300
commitfd739657947b66900fa7e38588e0637fe3a7467f (patch)
treebd9c32a84ec8c6fd120fed3e4956f8488f48b9cc /.github
parentd30e2ddb349f61aaaf614354a332e999512fa616 (diff)
Targetting JDK 17
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml9
1 files changed, 3 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b9b8253f..119a0964 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -5,16 +5,13 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
- strategy:
- matrix:
- java: [ 11, 15, 16 ]
- name: JDK ${{ matrix.java }}
+ name: OpenJDK
steps:
- uses: actions/checkout@v2
- - name: Set up JDK ${{ matrix.java }}
+ - name: Set up JDK 17
uses: actions/setup-java@v1
with:
- java-version: ${{ matrix.java }}
+ java-version: 17
- name: Cache Maven modules
uses: actions/cache@v2
with: