Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ jobs:
2>/dev/null || true

- name: Upload lint results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: dclint-results
Expand Down Expand Up @@ -612,7 +612,7 @@ jobs:
echo "safe_name=${SAFE_NAME}" >> $GITHUB_OUTPUT

- name: Upload individual scan result
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: cve-scan-${{ steps.parse.outputs.safe_name }}
path: ${{ steps.parse.outputs.safe_name }}.json
Expand Down Expand Up @@ -736,7 +736,7 @@ jobs:
echo "CVE scan completed - report generated (non-blocking)"

- name: Upload aggregated results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: cve-scan-results
path: |
Expand Down Expand Up @@ -912,7 +912,7 @@ jobs:
fi

- name: Upload test result
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: test-result-${{ matrix.service }}
Expand Down Expand Up @@ -1010,7 +1010,7 @@ jobs:
fi

- name: Upload aggregated results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: docker-compose-test-results
path: |
Expand Down
Loading