Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,20 @@ jobs:
if: always()
run: ./gradlew :testing:rest-api:testOpenDCSPostgres --stacktrace --info
- name: Upload WAR files
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: warfile-${{ matrix.java }}
path: ./**/build/libs/*.war
retention-days: 1
if-no-files-found: error
- name: Upload Test Reports
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: test-report-${{ matrix.java }}
path: ./**/build/reports/tests/**
if-no-files-found: error
- name: Upload Coverage Reports
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: coverage-report-${{ matrix.java }}
path: ./**/build/reports/jacoco/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/owasp_zap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Run OWASP Zap
run: ./gradlew :testing:rest-api:owaspZap --stacktrace
- name: Upload Full HTML Report
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: zap_report.html
path: integrationtesting/rest-api/build/test-results/owasp_zap/zap_report.html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Generate OpenAPI
run: ./gradlew generateOpenAPI
- name: Upload OpenAPI Specification
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: openapi
path: ./**/build/swagger/opendcs-openapi.json
Expand Down
Loading