Skip to content
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

Add Dependabot configuration for pip and GitHub Actions #66

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If it's all the same to you, I'd rather this schedule was more gentile. Porch doesn't have a CD process, so there would be far more churn than releases and deployments. I'd suggest weekly or monthly would be quite enough to ward off evil.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Then I'd suggest acting on them weekly or monthly, but leaving the daily schedule so that if a "critical" pops up it can dealt with. The actual frequency of PRs is much less than daily (typically 2-3 per month), so best case is you see the 3 PRs at the end of the month, worst case is you sit on a critical CVE for that same time.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very well. Thanks for enabling it in any event. Been collecting dust in my to-do for years.

time: "00:00"
timezone: "Europe/London"
open-pull-requests-limit: 5

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
time: "00:00"
timezone: "Europe/London"
open-pull-requests-limit: 5
Loading