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
6 changes: 3 additions & 3 deletions .github/workflows/consolidated-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: python scripts/validate_template_syntax.py

- name: Upload validation artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: template-validation-report
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
verbose: true

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: test-results-py${{ matrix.python-version }}
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
python -m twine check dist/*

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: python-packages-${{ steps.version.outputs.version }}
path: dist/
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/e2e-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
pip list >> system_info.txt || echo "Failed to list packages" >> system_info.txt

- name: Upload test artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: e2e-test-artifacts-py${{ matrix.python-version }}-${{ matrix.container-engine }}
Expand All @@ -183,7 +183,7 @@ jobs:
retention-days: 7

- name: Upload test reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: e2e-test-reports-py${{ matrix.python-version }}-${{ matrix.container-engine }}
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
safety check

- name: Upload security reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: security-scan-reports
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
fi

- name: Upload performance reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: performance-analysis-reports
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:
cat SUMMARY.md

- name: Upload integration summary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: integration-test-summary
path: SUMMARY.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
semgrep --config=auto src/ || echo "Semgrep found issues - check report"

- name: Upload security reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: security-reports
Expand Down
Loading