Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci-doctor.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
./gradlew ${{matrix.gradle-argument}} --info --stacktrace
fi
- name: Upload Coverage XML Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always() && matrix.label == 'java25'
with:
name: coverage-report
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
> "/tmp/test-stats/${{ matrix.label }}.json"
- name: Upload Test Stats
if: always() && matrix.label != 'check'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: test-stats-${{ matrix.label }}
path: /tmp/test-stats/${{ matrix.label }}.json
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ jobs:
./gradlew ${{matrix.gradle-argument}} --info --stacktrace
fi
- name: Upload Coverage HTML Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always() && matrix.label == 'java25'
with:
name: jacoco-html-report
path: build/reports/jacoco/test/html/
retention-days: 14
- name: Upload Coverage XML Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always() && matrix.label == 'java25'
with:
name: coverage-report
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
> "/tmp/test-stats/${{ matrix.label }}.json"
- name: Upload Test Stats
if: always() && matrix.label != 'check'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: test-stats-${{ matrix.label }}
path: /tmp/test-stats/${{ matrix.label }}.json
Expand Down