Skip to content

Commit 66f9add

Browse files
authored
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)
1 parent 2ab3718 commit 66f9add

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
java: [ 17, 19 ]
31+
java: [ 17, 21 ]
3232
name: "Java ${{ matrix.java }}"
33-
runs-on: ubuntu-22.04
33+
runs-on: ubuntu-24.04
3434
steps:
3535
- name: Checkout
3636
uses: actions/checkout@v4
@@ -53,7 +53,7 @@ jobs:
5353
run: find ~/.m2/repository -name '*-SNAPSHOT' -a -type d -print0 | xargs -0 rm -rf
5454
site:
5555
name: Site
56-
runs-on: ubuntu-22.04
56+
runs-on: ubuntu-24.04
5757
steps:
5858
- name: Checkout
5959
uses: actions/checkout@v4
@@ -77,7 +77,7 @@ jobs:
7777
deploy:
7878
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'apache/axis-axis2-java-core'
7979
name: Deploy
80-
runs-on: ubuntu-22.04
80+
runs-on: ubuntu-24.04
8181
needs:
8282
- build
8383
- site

0 commit comments

Comments
 (0)