svn commit: r75487 - /dev/axis/axis2/java/core/2.0.0/ /release/axis/axis2/java/core/2.0.0/

2025-03-15 Thread robertlazarski
Author: robertlazarski
Date: Mon Mar 10 17:20:45 2025
New Revision: 75487

Log:
Axis2 2.0.0 release

Added:
release/axis/axis2/java/core/2.0.0/
  - copied from r75486, dev/axis/axis2/java/core/2.0.0/
Removed:
dev/axis/axis2/java/core/2.0.0/



(axis-axis2-java-core) 01/01: Update ci.yml

2025-03-15 Thread cortlepp
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 
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