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/accuracy-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: npm run test:accuracy
- name: Upload accuracy test summary
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: accuracy-test-summary
path: .accuracy/test-summary.html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-health-fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: npm test
- name: Upload test results
if: always() && matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-results
path: coverage/lcov.info
2 changes: 1 addition & 1 deletion .github/workflows/code-health-long-running.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
MDB_MCP_API_BASE_URL: ${{ vars.TEST_ATLAS_BASE_URL }}
run: npm test -- tests/integration/tools/atlas --project=long-running-tests
- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: atlas-test-results
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/code-health.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
SKIP_ATLAS_LOCAL_TESTS: "true"
- name: Upload test results
if: always() && matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-results
path: coverage/lcov.info
Expand All @@ -64,7 +64,7 @@ jobs:
MDB_MCP_API_BASE_URL: ${{ vars.TEST_ATLAS_BASE_URL }}
run: npm test -- tests/integration/tools/atlas/
- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: atlas-test-results
Expand All @@ -86,7 +86,7 @@ jobs:
- name: Run tests
run: npm test -- tests/integration/tools/atlas-local/
- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: atlas-local-test-results
Expand Down
Loading