ci: update GitHub Actions and Python versions in CI workflows#188
Merged
ngilles-aiven merged 7 commits intomasterfrom Mar 10, 2026
Merged
ci: update GitHub Actions and Python versions in CI workflows#188ngilles-aiven merged 7 commits intomasterfrom
ngilles-aiven merged 7 commits intomasterfrom
Conversation
- actions/checkout v2 → v6 - actions/setup-python v2 → v6 - codecov/codecov-action v2.1.0 → v5.5.2 - github/codeql-action v1 → v4
google-re2 did not publish pre-built wheels for Python 3.14. Without wheels, pip attempts a source build that requires Bazel, which fails in CI. Since journalpump already falls back to stdlib re when re2 is unavailable, adding a PEP 508 version marker is the simplest fix. The marker can be removed once google-re2 publishes cp314 wheels.
unify is not referenced in any source file, Makefile, or pre-commit config. The package is unmaintained (last release 2019) and fails to install on Python 3.14 due to use of the removed ast.Constant.s attribute. String quoting is already handled by black.
a51a19a to
6012a0c
Compare
- Update black 22.3.0 → 26.3.0 (22.x crashes on 3.14 due to removed asyncio.get_event_loop() behavior) - Update mypy v0.960 → v1.19.1 and drop typed-ast dependency (typed-ast is not available on 3.14; mypy 1.x has a built-in parser) - Add re2 to pylint ignored-modules (google-re2 has no 3.14 wheels, but the import is guarded by USE_RE2 env var with stdlib re fallback)
Drop 3.9 (no longer tested) and add 3.12, 3.13, 3.14 to match the current CI test matrix.
6012a0c to
f86f72f
Compare
ngilles-aiven
approved these changes
Mar 10, 2026
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.
Update all GitHub Actions to their latest major versions:
Bump Python test matrix from 3.9/3.11 to 3.10/3.14.