Skip to content

Commit

Permalink
use Java 21 in CI build matrix
Browse files Browse the repository at this point in the history
Fixes #335

COPYBARA_INTEGRATE_REVIEW=#335 from sullis:sean/ci-jdk-21 d4361bd
PiperOrigin-RevId: 627018740
  • Loading branch information
sullis authored and Jimfs Team committed Apr 22, 2024
1 parent 82a9f65 commit 4f896c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
java: [ 15, 11, 8 ]
java: [ 21, 11, 8 ]
# Only test on macos and windows with a single recent JDK to avoid a
# combinatorial explosion of test configurations.
# Most OS-specific issues are not specific to a particular JDK version.
include:
- os: macos-latest
java: 15
java: 21
- os: windows-latest
java: 15
java: 21
runs-on: ${{ matrix.os }}
steps:
# Cancel any previous runs for the same branch that are still running.
Expand Down

0 comments on commit 4f896c0

Please sign in to comment.