From cc2881272f907c6f912e21633c25a0fbb476d694 Mon Sep 17 00:00:00 2001 From: Adam Pocock Date: Tue, 19 Sep 2023 16:01:21 -0400 Subject: [PATCH] Bumping CI to Java 21. --- .github/workflows/maven-macos.yml | 8 ++++---- .github/workflows/maven-ubuntu.yml | 8 ++++---- .github/workflows/maven-windows.yml | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/maven-macos.yml b/.github/workflows/maven-macos.yml index 5abb5a37..2bbcc3b9 100644 --- a/.github/workflows/maven-macos.yml +++ b/.github/workflows/maven-macos.yml @@ -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: OLCUT CI (macOS x86_64, Java SE 17, 20) +name: OLCUT CI (macOS x86_64, Java SE 17, 21) on: push: @@ -15,12 +15,12 @@ jobs: strategy: matrix: # test against supported LTS versions and latest - java: [ 17, 20 ] + java: [ 17, 21 ] name: OLCUT - macOS Java SE ${{ matrix.java }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Java Development Kits built by Oracle - uses: oracle-actions/setup-java@v1.3.1 + uses: oracle-actions/setup-java@v1.3.2 with: release: ${{ matrix.java }} - name: Build with Maven diff --git a/.github/workflows/maven-ubuntu.yml b/.github/workflows/maven-ubuntu.yml index 03deefb3..daf690fd 100644 --- a/.github/workflows/maven-ubuntu.yml +++ b/.github/workflows/maven-ubuntu.yml @@ -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: OLCUT CI (Ubuntu x86_64, Java SE 17, 20) +name: OLCUT CI (Ubuntu x86_64, Java SE 17, 21) on: push: @@ -15,12 +15,12 @@ jobs: strategy: matrix: # test against supported LTS versions and latest - java: [ 17, 20 ] + java: [ 17, 21 ] name: OLCUT - Ubuntu Java SE ${{ matrix.java }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Java Development Kits built by Oracle - uses: oracle-actions/setup-java@v1.3.1 + uses: oracle-actions/setup-java@v1.3.2 with: release: ${{ matrix.java }} - name: Build with Maven diff --git a/.github/workflows/maven-windows.yml b/.github/workflows/maven-windows.yml index 196b3c4f..186e2b6d 100644 --- a/.github/workflows/maven-windows.yml +++ b/.github/workflows/maven-windows.yml @@ -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: OLCUT CI (Windows x86_64, Java SE 17, 20) +name: OLCUT CI (Windows x86_64, Java SE 17, 21) on: push: @@ -15,12 +15,12 @@ jobs: strategy: matrix: # test against supported LTS versions and latest - java: [ 17, 20 ] + java: [ 17, 21 ] name: OLCUT - Windows Java SE ${{ matrix.java }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Java Development Kits built by Oracle - uses: oracle-actions/setup-java@v1.3.1 + uses: oracle-actions/setup-java@v1.3.2 with: release: ${{ matrix.java }} - name: Build with Maven