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
2 changes: 1 addition & 1 deletion .github/workflows/build-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: python build_binary.py

- name: Upload artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: shannot-binary-${{ matrix.platform }}-${{ matrix.arch }}
path: dist/shannot-${{ matrix.platform }}-${{ matrix.arch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
twine check dist/*

- name: Upload artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: python-package-distributions
path: dist/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-mcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: mcp-test-results-py${{ matrix.python-version }}
path: mcp-results.xml
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: mcp-unit-test-results
path: mcp-unit-results.xml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Upload coverage artifact
if: matrix.python-version == '3.11'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-report
path: coverage.xml
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
twine check dist/*

- name: Upload artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: distribution-packages
path: dist/
Loading