Resolve Dependabot Alerts: Upgrade Dependencies & GitHub Actions#525
Merged
BinoyOza-okta merged 3 commits intomasterfrom Apr 15, 2026
Merged
Resolve Dependabot Alerts: Upgrade Dependencies & GitHub Actions#525BinoyOza-okta merged 3 commits intomasterfrom
BinoyOza-okta merged 3 commits intomasterfrom
Conversation
Bump runtime and dev dependencies to their latest secure versions and upgrade GitHub Actions to current major releases. Runtime dependency updates: - aenum: 3.1.11 → 3.1.16 - aiohttp: 3.12.14 → 3.13.3 - pydash: 8.0.5 → 8.0.6 - PyJWT: 2.10.1 → 2.11.0 - PyYAML: 6.0.2 → 6.0.3 - requests: 2.32.3 → 2.32.5 - xmltodict: 0.14.2 → 1.0.2 Dev/test dependency updates: - flake8: 7.1.2 → 7.3.0 (pyproject/setup: >=4.0.0 → >=7.3.0) - pyfakefs: 5.8.0 → 5.10.2 - pytest: 8.3.5 → 8.4.2 (test-requirements: ~=7.1.3 → ~=8.4.2) - pytest-asyncio: 0.26.0 → 1.2.0 - pytest-mock: 3.14.0 → 3.15.1 - pytest-recording: 0.13.2 → 0.13.4 - tox: 4.24.2 → 4.30.3 (pyproject/setup: >=3.9.0 → >=4.30.3) - twine: 6.1.0 → 6.2.0 GitHub Actions updates: - actions/checkout: v2/v3 → v6 - actions/setup-python: v2/v4 → v6 Changes applied across: - requirements.txt, setup.py, pyproject.toml, test-requirements.txt - openapi/templates/ (mustache templates for code generation) - .github/workflows/python-package.yml, .github/workflows/python.yml
…ess the security and vulnerability concerns.
…ecurity and vulnerability concerns.
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.
Resolve Dependabot Alerts: Upgrade Dependencies & GitHub Actions
Summary
This PR addresses multiple Dependabot security alerts and version-bump PRs by upgrading all flagged runtime and development dependencies to their latest secure versions. It also bumps GitHub Actions (
actions/checkout,actions/setup-python) to the current major release (v6) to eliminate Node.js 12/16 deprecation warnings.Motivation
Dependabot raised alerts and pull requests for several outdated packages that have known vulnerabilities or have since been superseded by newer secure releases. Rather than merging each Dependabot PR individually, this PR consolidates all the dependency bumps into a single change set for easier review and testing.
Changes
Runtime Dependencies (
requirements.txt,setup.py,pyproject.toml)Development & Testing Dependencies (
requirements.txt,pyproject.toml,test-requirements.txt)GitHub Actions (
.github/workflows/)OpenAPI Generator Templates (
openapi/templates/)The mustache templates used for SDK code generation (
requirements.mustache,setup.mustache,pyproject.mustache,test-requirements.mustache) have been updated to match the new dependency versions so that future regenerations remain consistent.Files Changed
.github/workflows/python-package.yml— Bump checkout & setup-python actions.github/workflows/python.yml— Bump checkout & setup-python actionsrequirements.txt— Bump runtime + dev dependency versionssetup.py— Bump runtime dependency version specifierspyproject.toml— Bump dev dependency version specifierstest-requirements.txt— Bump pytest version specifieropenapi/templates/requirements.mustache— Mirror requirements.txt updatesopenapi/templates/setup.mustache— Mirror setup.py updatesopenapi/templates/pyproject.mustache— Mirror pyproject.toml updatesopenapi/templates/test-requirements.mustache— Mirror test-requirements.txt updatesTesting
pytest tests/integration) passflake8) passes with the upgraded flake8 versionRisk Assessment
Low risk. All changes are dependency version bumps to address known Dependabot alerts. No application logic or SDK API changes are included.
Fixes