Skip to content

Commit 07227e3

Browse files
committed
Merge branch 'main' into ni/list-indexes-unification
2 parents ccefe62 + adbf3a0 commit 07227e3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+2246
-796
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "weekly"
7+
cooldown:
8+
default-days: 7
9+
include:
10+
- "*"
711
ignore:
812
# We are ignoring major updates on yargs-parser because yargs-parser@22
913
# does not play nicely when bundled using webpack. Our VSCode extension

.github/workflows/accuracy-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
MDB_OPEN_AI_API_KEY: ${{ secrets.ACCURACY_OPEN_AI_API_KEY }}
2222
MDB_GEMINI_API_KEY: ${{ secrets.ACCURACY_GEMINI_API_KEY }}
2323
MDB_AZURE_OPEN_AI_API_KEY: ${{ secrets.ACCURACY_AZURE_OPEN_AI_API_KEY }}
24-
MDB_AZURE_OPEN_AI_API_URL: ${{ vars.ACCURACY_AZURE_OPEN_AI_API_URL }}
24+
MDB_AZURE_OPEN_AI_API_URL: ${{ vars.ACCURACY_AZURE_OPEN_AI_API_URL_V2 }}
2525
MDB_ACCURACY_MDB_URL: ${{ secrets.ACCURACY_MDB_CONNECTION_STRING }}
2626
MDB_ACCURACY_MDB_DB: ${{ vars.ACCURACY_MDB_DB }}
2727
MDB_ACCURACY_MDB_COLLECTION: ${{ vars.ACCURACY_MDB_COLLECTION }}
2828
MDB_ACCURACY_BASELINE_COMMIT: ${{ github.event.pull_request.base.sha || '' }}
2929
steps:
3030
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
3131
- uses: actions/checkout@v5
32-
- uses: actions/setup-node@v5
32+
- uses: actions/setup-node@v6
3333
with:
3434
node-version-file: package.json
3535
cache: "npm"

.github/workflows/check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
1919
- uses: actions/checkout@v5
20-
- uses: actions/setup-node@v5
20+
- uses: actions/setup-node@v6
2121
with:
2222
node-version-file: package.json
2323
cache: "npm"
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
3333
- uses: actions/checkout@v5
34-
- uses: actions/setup-node@v5
34+
- uses: actions/setup-node@v6
3535
with:
3636
node-version-file: package.json
3737
cache: "npm"
@@ -45,7 +45,7 @@ jobs:
4545
steps:
4646
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
4747
- uses: actions/checkout@v5
48-
- uses: actions/setup-node@v5
48+
- uses: actions/setup-node@v6
4949
with:
5050
node-version-file: package.json
5151
cache: "npm"

.github/workflows/cleanup-atlas-env.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
1515
- uses: actions/checkout@v5
16-
- uses: actions/setup-node@v5
16+
- uses: actions/setup-node@v6
1717
with:
1818
node-version-file: package.json
1919
cache: "npm"

.github/workflows/code-health-fork.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ permissions: {}
1010
jobs:
1111
run-tests:
1212
name: Run MongoDB tests
13-
if: github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.head.repo.full_name != github.repository
13+
# Code health disabled on forks for now
14+
# if: github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.head.repo.full_name != github.repository
15+
if: github.event.pull_request.user.login == 'dependabot[bot]'
1416
strategy:
1517
matrix:
1618
os: [ubuntu-latest, macos-latest, windows-latest]
@@ -25,7 +27,7 @@ jobs:
2527
name: Setup Docker Environment
2628
with:
2729
set-host: true
28-
- uses: actions/setup-node@v5
30+
- uses: actions/setup-node@v6
2931
with:
3032
node-version-file: package.json
3133
cache: "npm"

.github/workflows/code-health.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: Setup Docker Environment
2727
with:
2828
set-host: true
29-
- uses: actions/setup-node@v5
29+
- uses: actions/setup-node@v6
3030
with:
3131
node-version-file: package.json
3232
cache: "npm"
@@ -48,7 +48,7 @@ jobs:
4848
steps:
4949
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
5050
- uses: actions/checkout@v5
51-
- uses: actions/setup-node@v5
51+
- uses: actions/setup-node@v6
5252
with:
5353
node-version-file: package.json
5454
cache: "npm"
@@ -74,7 +74,7 @@ jobs:
7474
needs: [run-tests, run-atlas-tests]
7575
steps:
7676
- uses: actions/checkout@v5
77-
- uses: actions/setup-node@v5
77+
- uses: actions/setup-node@v6
7878
with:
7979
node-version-file: package.json
8080
cache: "npm"

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }}
2424
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}
2525
- uses: actions/checkout@v5
26-
- uses: actions/setup-node@v5
26+
- uses: actions/setup-node@v6
2727
with:
2828
node-version-file: package.json
2929
registry-url: "https://registry.npmjs.org"

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0
21-
- uses: actions/setup-node@v5
21+
- uses: actions/setup-node@v6
2222
with:
2323
node-version-file: package.json
2424
registry-url: "https://registry.npmjs.org"
@@ -81,7 +81,7 @@ jobs:
8181
steps:
8282
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
8383
- uses: actions/checkout@v5
84-
- uses: actions/setup-node@v5
84+
- uses: actions/setup-node@v6
8585
with:
8686
node-version-file: package.json
8787
registry-url: "https://registry.npmjs.org"

0 commit comments

Comments
 (0)