Skip to content

Commit d062d68

Browse files
committed
chore(ci): JDK 25 is GA; fix archived artifacts paths
Signed-off-by: Radoslav Husar <[email protected]>
1 parent 5aff5d8 commit d062d68

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
strategy:
1717
matrix:
1818
os:
19+
- macos-latest
1920
- ubuntu-latest
2021
- windows-latest
21-
- macos-latest
2222
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and optionally the latest EA JDK (if available).
23-
# https://www.oracle.com/java/technologies/java-se-support-roadmap.html
23+
# Reference: https://adoptium.net/support/
2424
java:
2525
- 17
2626
- 21
27-
- 24
27+
- 25
2828
steps:
2929
- name: Checkout
3030
uses: actions/checkout@v5
@@ -40,4 +40,6 @@ jobs:
4040
if: failure()
4141
with:
4242
name: surefire-${{ matrix.os }}-${{ matrix.java }}
43-
path: '**/surefire-reports/*.txt'
43+
path: |
44+
**/surefire-reports/*
45+
**/failsafe-reports/*

0 commit comments

Comments
 (0)