Open
Conversation
``` $ actionlint .github/workflows/test.yml .github/workflows/test.yml:17:15: the runner of "actions/checkout@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] | 17 | - uses: actions/checkout@v2 | ^~~~~~~~~~~~~~~~~~~ ```
```
$ make format
black .
reformatted tests/migrations/20150612230153.py
reformatted tests/migrations/20181123000000_gt_500.py
All done! ✨ 🍰 ✨
2 files reformatted, 14 files left unchanged.
ruff check --fix .
warning: The top-level linter settings are deprecated in favour of their
counterparts in the `lint` section. Please update the following options
in `pyproject.toml`:
- 'ignore' -> 'lint.ignore'
- 'select' -> 'lint.select'
Found 6 errors (6 fixed, 0 remaining).
mypy src
src/pymongo_migrate/migrations.py:61: note: By default the bodies of
untyped functions are not checked, consider using --check-untyped-defs
[annotation-unchecked]
src/pymongo_migrate/migrations.py:62: note: By default the bodies of
untyped functions are not checked, consider using --check-untyped-defs
[annotation-unchecked]
Success: no issues found in 7 source files
bandit -c .bandit.yml -r src
[main] INFO profile include tests: None
[main] INFO profile exclude tests: B101
[main] INFO cli include tests: None
[main] INFO cli exclude tests: None
[main] INFO using config: .bandit.yml
[main] INFO running on Python 3.13.5
Run started:2025-09-10 16:58:20.832204
Test results:
No issues identified.
Code scanned:
Total lines of code: 504
Total lines skipped (#nosec): 0
Run metrics:
Total issues (by severity):
Undefined: 0
Low: 0
Medium: 0
High: 0
Total issues (by confidence):
Undefined: 0
Low: 0
Medium: 0
High: 0
Files skipped (0):
```
Author
|
👋 @rooterkyberian, would you please review these changes. |
rooterkyberian
approved these changes
Sep 11, 2025
Contributor
rooterkyberian
left a comment
There was a problem hiding this comment.
look good; but please note I no longer am owner of this repo, and as such I cannot merge things
Author
|
Thanks for letting me know. Do you know who the current owners are? |
Author
|
👋 @AcidWeb, would you please review these changes. |
Author
|
💭 If it's useful, I could configure Dependabot to keep the GitHub Actions up-to-date as part of this changeset. |
Member
|
I don't maintain this repo. Please consider it abandoned. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
💁 These changes add Python versions 3.12 and 3.13 to the continuous integration configuration. I've also updated the versions of the various GitHub Actions used in the workflow to ensure that they're runnable.