Skip to content

Commit

Permalink
Update test action dependencies and build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jchambers committed Dec 28, 2023
1 parent 4d68d6f commit 6ed35e8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-latest]
java: [8, 11, 13, 15]
os: [ubuntu-22.04, macos-latest]
java: [8, 17, 21]
transport: [native, JDK]
tls: [native, JDK]
fail-fast: false
name: JDK ${{ matrix.java }}, ${{ matrix.os }}, ${{ matrix.transport }} transport, ${{ matrix.tls }} SSL provider

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
- name: Cache local Maven repository
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down

0 comments on commit 6ed35e8

Please sign in to comment.