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
2 changes: 1 addition & 1 deletion .github/workflows/dependency-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

# Upload dependency check reports
- name: Upload dependency check reports
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: dependency-check-report-${{ steps.get_version.outputs.VERSION }}
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/maven.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,21 +87,21 @@ jobs:
echo "✅ CLI commands executed successfully"

- name: Upload jar
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: setup-${{ steps.get_version.outputs.VERSION }}.jar
path: |
./target/setup-${{ steps.get_version.outputs.VERSION }}.jar

- name: Upload JaCoCo coverage reports
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: jacoco-coverage-report
path: ./target/site/jacoco
retention-days: 7

- name: Upload surefire reports
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: surefire-reports
path: ./target/reports
Expand Down
Loading