This is an automated email from the ASF dual-hosted git repository. cortlepp pushed a commit to branch cortlepp/update-ci in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git
commit 66f9adde7336962f522db50516b89d8ddd5fc58b Author: Christian Ortlepp <christian.ortl...@hypergene.com> AuthorDate: Mon Mar 10 09:22:17 2025 +0100 Update ci.yml - update tested Java version to `[17,21]` from `[17,19]` since Java 19 is no longer supported - update base images to ubuntu 24.04 (the current latest version) --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f001b52e03..deec61b8ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,9 +28,9 @@ jobs: strategy: fail-fast: false matrix: - java: [ 17, 19 ] + java: [ 17, 21 ] name: "Java ${{ matrix.java }}" - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@v4 @@ -53,7 +53,7 @@ jobs: run: find ~/.m2/repository -name '*-SNAPSHOT' -a -type d -print0 | xargs -0 rm -rf site: name: Site - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: deploy: if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'apache/axis-axis2-java-core' name: Deploy - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: - build - site