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
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
echo "Date: $(date)" >> $GITHUB_STEP_SUMMARY

- name: Upload benchmark results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: benchmark-results
path: target/criterion/
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:
echo "Compile timing report generated. Check artifacts for detailed analysis." >> $GITHUB_STEP_SUMMARY

- name: Upload timing report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: compile-timings
path: target/cargo-timings/*.html
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
continue-on-error: true

- name: Upload coverage HTML report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-report
path: target/llvm-cov/html/
Expand Down Expand Up @@ -272,7 +272,7 @@ jobs:
fi

- name: Upload mutation results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: mutation-testing-results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
run: cargo doc --all-features --no-deps --document-private-items

- name: Upload documentation
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: documentation
path: target/doc/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
fi

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: release-${{ matrix.name }}
path: artifacts/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
continue-on-error: true

- name: Upload audit report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: security-audit-report
path: audit-report.json
Expand Down
Loading