diff options
author | Mariell Hoversholm <[email protected]> | 2021-05-23 14:12:50 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-23 05:12:50 -0700 |
commit | c58b3b277ce9e783b954e51502e250169f31bb8a (patch) | |
tree | 19b138dc5114b179293dd2efeb20c3945c5cb3fd /.github | |
parent | 4b72327a656354c78be7df85855652d7a57da3f0 (diff) | |
download | Paper-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')
-rw-r--r-- | .github/workflows/build.yml | 2 |
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 |