Skip to content

Commit 658c540

Browse files
committed
Updated GitHub Actions for branch 3.x
- Build with 8, 11, 17 - Staging is dead - removed - Switched from zulu to temurin Signed-off-by: David Matějček <[email protected]>
1 parent b65ca00 commit 658c540

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/maven.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2021 Contributors to the Eclipse Foundation
2+
# Copyright (c) 2021, 2026 Contributors to the Eclipse Foundation
33
#
44
# This program and the accompanying materials are made available under the
55
# terms of the Eclipse Public License v. 2.0 which is available at
@@ -23,17 +23,18 @@ jobs:
2323

2424
strategy:
2525
matrix:
26-
java_version: [ 11, 17-ea ]
26+
java_version: [ 8, 11, 17 ]
2727

2828
steps:
2929
- name: Checkout for build
30-
uses: actions/checkout@v2.3.4
30+
uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
3333
- name: Set up JDK
34-
uses: actions/setup-java@v2
34+
uses: actions/setup-java@v4
3535
with:
36-
distribution: 'zulu'
36+
distribution: 'temurin'
3737
java-version: ${{ matrix.java_version }}
3838
- name: Verify
39-
run: cd wsit && mvn -B -V -U -C -Dalltests=true -Pstaging,oss-release clean verify org.glassfish.copyright:glassfish-copyright-maven-plugin:check -Dgpg.skip=true
39+
run: cd wsit && mvn -B -V -U -C -Dalltests=true -Poss-release clean verify org.glassfish.copyright:glassfish-copyright-maven-plugin:check -Dgpg.skip=true
40+

0 commit comments

Comments
 (0)