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

- name: Upload test artifacts on failure
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-artifacts-build-${{ matrix.rust-version }}
path: |
Expand Down Expand Up @@ -324,7 +324,7 @@ jobs:

- name: Upload test artifacts on failure
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-artifacts-text-injection
path: |
Expand Down Expand Up @@ -404,7 +404,7 @@ jobs:
if [[ "${{ needs.moonshine_check.result }}" != "success" ]]; then echo "::warning::Moonshine check failed (optional)."; fi
echo "All critical stages passed successfully."
- name: Upload CI Report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ci-report
path: report.md
2 changes: 1 addition & 1 deletion .github/workflows/docs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
uv run scripts/docs_semantic_review.py "${{ github.event.pull_request.base.sha }}" "${{ github.sha }}" --packet-out .artifacts/docs_semantic_review_packet.json --prompt-out .artifacts/docs_semantic_review_prompt.md

- name: Upload semantic review artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: docs-semantic-review
path: .artifacts/docs_semantic_review_*
Expand Down
Loading