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/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Upload coverage HTML
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-report
path: htmlcov/
Expand All @@ -74,7 +74,7 @@ jobs:

- name: Upload badge
if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-badge
path: coverage.svg
2 changes: 1 addition & 1 deletion .github/workflows/database-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: test-results-node-${{ matrix.node-version }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mcp-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: test-results
path: |
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:

- name: Upload benchmark results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: performance-results
path: benchmark-results.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
twine check dist/*

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: dist-packages
path: dist/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
continue-on-error: true

- name: Upload Bandit report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: bandit-security-report
path: bandit-report.json
Expand All @@ -59,7 +59,7 @@ jobs:
continue-on-error: true

- name: Upload security reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: security-reports
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
PYTHONPATH: ${{ github.workspace }}

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
Expand Down
Loading