From c58b3b277ce9e783b954e51502e250169f31bb8a Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Sun, 23 May 2021 14:12:50 +0200 Subject: [PATCH] ci: replace Java 11 with Java 16 in GH Actions build flow (#5709) * ci: add Java 16 to GH Actions build flow With our new dependence on Java 16+ as of Minecraft 1.17 (refer to: https://www.minecraft.net/en-us/article/minecraft-snapshot-21w19a), we should also ensure everything we merge builds on Java 16. Signed-off-by: Mariell Hoversholm * ci: remove Java 11 from build flow Signed-off-by: Mariell Hoversholm --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d208097070..569d405972 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: [11, 8] + java: [16, 8] fail-fast: true steps: - uses: actions/checkout@v2