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/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
make bench-report

- name: Upload reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: benchmark-reports
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
alert-comment-cc-users: '@maintainers'

- name: Upload benchmark reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: benchmark-reports
path: |
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
# Add memory usage statistics here when we have specific binaries

- name: Upload memory profiling report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: memory-profiling-report
path: memory_report.md
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-enhanced.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:

- name: Upload audit report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: security-audit-report
path: audit-report.json
Expand Down Expand Up @@ -431,7 +431,7 @@ jobs:
fi

- name: Upload release artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: release-${{ matrix.target }}
path: release-artifacts/
Expand Down Expand Up @@ -537,7 +537,7 @@ jobs:
fi

- name: Upload benchmark results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: benchmark-results
path: benchmark-results.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
run: cargo test --workspace --release

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: release-build
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ jobs:
EOF

- name: Upload documentation artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: documentation
path: target/final-docs/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
echo '```' >> performance_report.md

- name: Upload performance report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: nightly-performance-report
path: |
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
echo '```' >> memory_leak_report.md

- name: Upload memory leak report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: memory-leak-report
path: memory_leak_report.md
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
echo '```' >> dependency_audit.md

- name: Upload dependency audit
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: comprehensive-dependency-audit
path: dependency_audit.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ jobs:
echo "performance_report_created=true" >> $GITHUB_OUTPUT

- name: Upload performance artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: performance-results-${{ github.sha }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rollback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
EOF

- name: Upload Backup Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: rollback-backup-${{ github.event.inputs.environment }}-$(date +%Y%m%d-%H%M%S)
path: backup-*/**
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
fi

- name: Upload audit results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: security-audit-results
path: |
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
echo '```' >> outdated-report.md

- name: Upload dependency reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dependency-reports
path: |
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
echo '```' >> supply-chain-report.md

- name: Upload supply chain analysis
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: supply-chain-analysis
path: supply-chain-report.md
Expand Down