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
4 changes: 2 additions & 2 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

# Upload XMLs ONLY once (Java 21) so the report doesn't double-count
- name: Upload unit test XMLs (Java 21 only)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always() && matrix.java == '21'
with:
name: unit-xml
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:

# Upload XMLs ONLY once (Java 21) so the report doesn't double-count
- name: Upload IT test XMLs (Java 21 only)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always() && matrix.java == '21'
with:
name: it-xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: mvn -B clean verify -Pqa -Ddependency-check.skip=true

- name: Upload unit test XMLs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: unit-xml-java-${{ matrix.java }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
run: mvn -B cyclonedx:makeAggregateBom -Pqa

- name: Upload SBOM artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: sbom
path: target/bom.*
Expand Down
Loading