Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumping CI to Java 17 #188

Merged
merged 1 commit into from
Oct 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/maven-macos.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Tribuo CI (macOS x86_64, OpenJDK 8, 11, latest)
name: Tribuo CI (macOS x86_64, OpenJDK 8, 11, 17)

on:
push:
Expand All @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
# test against supported LTS versions and latest
java: [ 8, 11, 16 ]
java: [ 8, 11, 17 ]
name: macOS OpenJDK ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maven-ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Tribuo CI (Ubuntu x86_64, OpenJDK 8, 11, latest)
name: Tribuo CI (Ubuntu x86_64, OpenJDK 8, 11, 17)

on:
push:
Expand All @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
# test against supported LTS versions and latest
java: [ 8, 11, 16 ]
java: [ 8, 11, 17 ]
name: Ubuntu OpenJDK ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maven-windows.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Tribuo CI (Windows x86_64, OpenJDK 8, 11, latest)
name: Tribuo CI (Windows x86_64, OpenJDK 8, 11, 17)

on:
push:
Expand All @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
# test against supported LTS versions and latest
java: [ 8, 11, 16 ]
java: [ 8, 11, 17 ]
name: Windows OpenJDK ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
Expand Down