From 9dcc95b35790d4997545fdc88c2e75cb1b2e50b1 Mon Sep 17 00:00:00 2001 From: Werner Dietl Date: Mon, 27 Nov 2023 11:52:37 -0500 Subject: [PATCH 1/3] Update main.yml --- .github/workflows/main.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3cb7324..68f54fe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,22 +12,23 @@ jobs: build: strategy: matrix: - jdk: [ 8, 11 ] + jdk: [ 8, 11, 17, 21 ] runs-on: ubuntu-latest steps: - name: Pull Request Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: ${{github.event.pull_request.head.ref}} repository: ${{github.event.pull_request.head.repo.full_name}} if: github.head_ref != '' - name: Push Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 if: github.head_ref == '' - name: Set up JDK - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: java-version: ${{matrix.jdk}} + distribution: 'temurin' - name: Set up Python 3 uses: actions/setup-python@v2 with: From 4b9099bcbeb24dfee0c02c83e770d53924691441 Mon Sep 17 00:00:00 2001 From: Werner Dietl Date: Thu, 8 Aug 2024 11:35:36 -0400 Subject: [PATCH 2/3] Commit to trigger CI --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 68f54fe..c2fe6cf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: build: strategy: matrix: - jdk: [ 8, 11, 17, 21 ] + jdk: [ 8, 11, 17, 21, 22 ] runs-on: ubuntu-latest steps: - name: Pull Request Checkout From e76123c933eeeaf928674ac699b07ecd2521c061 Mon Sep 17 00:00:00 2001 From: Werner Dietl Date: Wed, 4 Sep 2024 21:54:36 -0400 Subject: [PATCH 3/3] Don't test on JDK 21 & 22 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c2fe6cf..e4b1b60 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: build: strategy: matrix: - jdk: [ 8, 11, 17, 21, 22 ] + jdk: [ 8, 11, 17 ] runs-on: ubuntu-latest steps: - name: Pull Request Checkout