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

Create dependabot.yml #6

Merged
merged 1 commit into from
Jul 16, 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
157 changes: 157 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
# configuration options available at https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

# This configuration implements every package-ecosystem entry with the following logic:
# - run Sunday's at midnight at a timeframe that allows TII team members to benefit from dependabot runs
# - only manage direct dependencies, as opposed to transient dependencies which are harder to maintain at scale

version: 2
updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "mix"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "elm"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "nuget"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"

- package-ecosystem: "terraform"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "00:00"
timezone: "Asia/Kolkata"
allow:
- dependency-type: "direct"
Loading