From e349a87c8860a82dc06b12d9a7ba2d9f479ab74e Mon Sep 17 00:00:00 2001 From: Cheryl King Date: Thu, 9 Apr 2026 08:56:12 -0500 Subject: [PATCH 1/3] update yaml with Java 25 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fcdceb4..8e0adc0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,13 +18,13 @@ jobs: matrix: # test against latest update of each major Java version, as well as specific updates of LTS versions: os: [ubuntu-latest, windows-latest] - WLP_VERSION: [25.0.0_06] - java: [21, 17, 11, 8] + WLP_VERSION: [26.0.0_03] + java: [25, 21, 17, 11, 8] include: # match up licenses to WLP versions # http://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/downloads/wlp/index.yml - WLP_VERSION: 25.0.0_06 - WLP_LICENSE: L-CSPS-5QXFQL + WLP_LICENSE: L-CJVT-WW2FFS runs-on: ${{ matrix.os }} name: WL ${{ matrix.WLP_VERSION }}, Java ${{ matrix.java }}, ${{ matrix.os }} From 86d0bdf49fa71b1f3056d4bb81015af82ba8e135 Mon Sep 17 00:00:00 2001 From: Cheryl King Date: Thu, 9 Apr 2026 09:03:55 -0500 Subject: [PATCH 2/3] remove blanks --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8e0adc0..6ca79bb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,20 +26,20 @@ jobs: - WLP_VERSION: 25.0.0_06 WLP_LICENSE: L-CJVT-WW2FFS - runs-on: ${{ matrix.os }} - name: WL ${{ matrix.WLP_VERSION }}, Java ${{ matrix.java }}, ${{ matrix.os }} + runs-on: ${{matrix.os}} + name: WL ${{matrix.WLP_VERSION}}, Java ${{matrix.java}}, ${{matrix.os}} steps: - name: Checkout ci.ant uses: actions/checkout@v3 - - name: Setup Java ${{ matrix.java }} + - name: Setup Java ${{matrix.java}} uses: actions/setup-java@v3 with: distribution: 'temurin' - java-version: ${{ matrix.java }} + java-version: ${{matrix.java}} cache: 'maven' - name: Run tests with maven for ubuntu if: ${{ matrix.os == 'ubuntu-latest' }} - run: ./mvnw -V verify -Ponline-its -D"invoker.streamLogs"=true -DwlpVersion="${{ matrix.WLP_VERSION }}" -DwlpLicense="${{ matrix.WLP_LICENSE }}" -e + run: ./mvnw -V verify -Ponline-its -D"invoker.streamLogs"=true -DwlpVersion="${{matrix.WLP_VERSION}}" -DwlpLicense="${{matrix.WLP_LICENSE}}" -e - name: Run tests with maven for windows if: ${{ matrix.os == 'windows-latest' }} - run: ./mvnw -V verify -Pwindows-online-its -D"invoker.streamLogs"=true -DwlpVersion="${{ matrix.WLP_VERSION }}" -DwlpLicense="${{ matrix.WLP_LICENSE }}" -e + run: ./mvnw -V verify -Pwindows-online-its -D"invoker.streamLogs"=true -DwlpVersion="${{matrix.WLP_VERSION}}" -DwlpLicense="${{matrix.WLP_LICENSE}}" -e From 3f3ef894def9662e6e2925dc86ac00bd1fc5ace8 Mon Sep 17 00:00:00 2001 From: Cheryl King Date: Thu, 9 Apr 2026 09:10:40 -0500 Subject: [PATCH 3/3] add spaces back and fix license value --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6ca79bb..3598e75 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,23 +23,23 @@ jobs: include: # match up licenses to WLP versions # http://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/downloads/wlp/index.yml - - WLP_VERSION: 25.0.0_06 + - WLP_VERSION: 26.0.0_03 WLP_LICENSE: L-CJVT-WW2FFS - runs-on: ${{matrix.os}} - name: WL ${{matrix.WLP_VERSION}}, Java ${{matrix.java}}, ${{matrix.os}} + runs-on: ${{ matrix.os }} + name: WL ${{ matrix.WLP_VERSION }}, Java ${{ matrix.java }}, ${{ matrix.os }} steps: - name: Checkout ci.ant uses: actions/checkout@v3 - - name: Setup Java ${{matrix.java}} + - name: Setup Java ${{ matrix.java }} uses: actions/setup-java@v3 with: distribution: 'temurin' - java-version: ${{matrix.java}} + java-version: ${{ matrix.java }} cache: 'maven' - name: Run tests with maven for ubuntu if: ${{ matrix.os == 'ubuntu-latest' }} - run: ./mvnw -V verify -Ponline-its -D"invoker.streamLogs"=true -DwlpVersion="${{matrix.WLP_VERSION}}" -DwlpLicense="${{matrix.WLP_LICENSE}}" -e + run: ./mvnw -V verify -Ponline-its -D"invoker.streamLogs"=true -DwlpVersion="${{ matrix.WLP_VERSION }}" -DwlpLicense="${{ matrix.WLP_LICENSE }}" -e - name: Run tests with maven for windows if: ${{ matrix.os == 'windows-latest' }} - run: ./mvnw -V verify -Pwindows-online-its -D"invoker.streamLogs"=true -DwlpVersion="${{matrix.WLP_VERSION}}" -DwlpLicense="${{matrix.WLP_LICENSE}}" -e + run: ./mvnw -V verify -Pwindows-online-its -D"invoker.streamLogs"=true -DwlpVersion="${{ matrix.WLP_VERSION }}" -DwlpLicense="${{ matrix.WLP_LICENSE }}" -e