diff options
author | vitalyster | 2020-11-11 02:36:35 +0300 |
---|---|---|
committer | GitHub | 2020-11-11 02:36:35 +0300 |
commit | 67f4519129b1a4bf1ced63c935ce381f95433714 (patch) | |
tree | afae8d2981b01feecdd7724948e48f7d8ed51e86 /.github/workflows/ci.yml | |
parent | 2c41fbe7b19a6b6d0f39658ff7d48240da42e02c (diff) |
CI: use JDK 15
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7a94300..c2754e89 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,5 +9,9 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Set up JDK + uses: actions/setup-java@v1 + with: + java-version: 15 - name: Build run: gradle check |