ci: add Dependabot config - #87
Open
jhamon wants to merge 2 commits into
Open
Conversation
Add .github/dependabot.yml for pip (uv.lock) + github-actions, weekly with grouped minor/patch updates. The repo already has a strong CI lint job (ruff format check, ruff check, ty type check) plus multi-cloud e2e workflows. A CI pip-audit gate is a worthwhile follow-up but deferred: pip-audit currently flags the environment's own pip (PYSEC-2026-196, fix 26.1.2), which needs either a pinned pip upgrade or an --ignore-vuln; Dependabot will surface it in the meantime.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit b96eaf6. Configure here.
Bugbot flagged that 'package-ecosystem: pip' updates pyproject.toml but not uv.lock. This repo is uv-managed (uv.lock, no requirements.txt) and installs/ audits from the lockfile, so pip-ecosystem PRs would leave uv.lock stale. Switch to the 'uv' ecosystem, which updates pyproject.toml and uv.lock together.
IliaFeldgun
approved these changes
Aug 15, 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.

What
Adds
.github/dependabot.ymltopulumi-pinecone-byoc(weekly pip (uv.lock) + github-actions, grouped minor/patch). The repo already has a strong CI lint job —ruff format --check,ruff check, andtytype checking — plus multi-cloud e2e workflows; this fills the automated-dependency-updates gap.Follow-up (deferred)
A CI
pip-auditgate is worth adding, but pip-audit currently flags the environment's ownpip(PYSEC-2026-196, fix 26.1.2) rather than a project dependency. Cleanly gating needs either a pinned pip upgrade step or--ignore-vuln. Dependabot will surface dependency advisories in the meantime.🤖 Generated with Claude Code
Note
Low Risk
CI-only configuration with no runtime or application code changes; Dependabot PRs still go through existing lint and e2e workflows.
Overview
Introduces
.github/dependabot.ymlso dependency updates are automated instead of manual.Python (
uv) runs weekly at the repo root, with up to 10 open PRs and minor/patch updates grouped into a singleminor-and-patchgroup. GitHub Actions also updates weekly with a cap of 5 open PRs.Reviewed by Cursor Bugbot for commit 83775a9. Bugbot is set up for automated code reviews on this repo. Configure here.