summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorMariell Hoversholm <[email protected]>2021-05-23 14:12:50 +0200
committerGitHub <[email protected]>2021-05-23 05:12:50 -0700
commitc58b3b277ce9e783b954e51502e250169f31bb8a (patch)
tree19b138dc5114b179293dd2efeb20c3945c5cb3fd /.github/workflows
parent4b72327a656354c78be7df85855652d7a57da3f0 (diff)
downloadPaper-c58b3b277ce9e783b954e51502e250169f31bb8a.tar.gz
Paper-c58b3b277ce9e783b954e51502e250169f31bb8a.zip
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 <[email protected]> * ci: remove Java 11 from build flow Signed-off-by: Mariell Hoversholm <[email protected]>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 1 insertions, 1 deletions
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