Skip to content

Commit bdab37e

Browse files
committed
fix for CI update
1 parent 262df6a commit bdab37e

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,21 @@ jobs:
2121
full-build-base:
2222
runs-on: ${{ matrix.os }}
2323
strategy:
24+
fail-fast: false
2425
matrix:
2526
os: [ ubuntu-latest, windows-latest, macos-latest ]
2627
jdk: [1.8, 11, 17, 21, 25]
2728
steps:
2829
# Checkout code
29-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v6
3031
# Build/test for JDK
3132
- name: Setup JDK
32-
uses: actions/setup-java@v1
33+
uses: actions/setup-java@v5
3334
with:
35+
distribution: temurin
3436
java-version: ${{ matrix.jdk }}
3537
- name: Cache Maven packages
36-
uses: actions/cache@v3
38+
uses: actions/cache@v5
3739
with:
3840
path: ~/.m2
3941
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -43,7 +45,7 @@ jobs:
4345
# Make test report accessible from GitHub Actions (as Maven logs are long)
4446
- name: Publish Test Report
4547
if: success() || failure()
46-
uses: mikepenz/action-junit-report@v4
48+
uses: mikepenz/action-junit-report@v6
4749
env:
4850
NODE_OPTIONS: "--max_old_space_size=6144"
4951
with:

0 commit comments

Comments
 (0)