-
Notifications
You must be signed in to change notification settings - Fork 531
wip #2988
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wip #2988
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -24,33 +24,44 @@ jobs: | |||||
| uses: actions/checkout@v2 | ||||||
| with: | ||||||
| submodules: recursive | ||||||
| - id: start-mongodb | ||||||
| name: start mongodb | ||||||
| uses: mongodb-labs/drivers-evergreen-tools@master | ||||||
|
|
||||||
| - uses: actions/setup-python@v6 | ||||||
| with: | ||||||
| python-version: '3.13' | ||||||
|
|
||||||
| - name: "Set up MongoDB" | ||||||
| id: setup-mongodb | ||||||
| uses: ./tests/drivers-evergreen-tools | ||||||
|
||||||
| uses: ./tests/drivers-evergreen-tools | |
| uses: ./mod/drivers-evergreen-tools |
Copilot
AI
Feb 27, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The step ID was changed from "start-mongodb" to "setup-mongodb" on line 33, but this step reference still uses the old ID "start-mongodb". This needs to be updated to "setup-mongodb" to match the new step ID.
Copilot
AI
Feb 27, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The step ID was changed from "start-mongodb" to "setup-mongodb" on line 33, but this step reference still uses the old ID "start-mongodb". This needs to be updated to "setup-mongodb" to match the new step ID.
Copilot
AI
Feb 27, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The step ID was changed from "start-mongodb" to "setup-mongodb" on line 33, but this step reference still uses the old ID "start-mongodb". This needs to be updated to "setup-mongodb" to match the new step ID.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The indentation of the "with" keyword is incorrect. In GitHub Actions YAML, the "with" keyword should be aligned with "uses" (both at the same indentation level, not nested further).