Skip to content

Commit

Permalink
chore: Updating dependabot file to support github actions, python and…
Browse files Browse the repository at this point in the history
… docker packages

Signed-off-by: Rajpal Chauhan <[email protected]>
  • Loading branch information
rajpalc7 committed Apr 16, 2024
1 parent 4fe2bf1 commit de1b2c6
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,31 @@ updates:
# Maintain dependencies for GitHub Actions
# - Check for updates once a week
# - Group all updates into a single PR
- package-ecosystem: github-actions
directory: /
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: weekly
interval: "weekly"
groups:
all-actions:
patterns: ["*"]

# Maintain pip dependencies
- package-ecosystem: pip
directory: /
# Maintain dependencies for Python Packages
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: daily
interval: "weekly"
day: "monday"
time: "04:00"
timezone: "Canada/Pacific"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]

# Maintain dependencies for docker
- package-ecosystem: "docker"
directory: "/docker"
schedule:
interval: "weekly"
day: "monday"
time: "04:00"
timezone: "Canada/Pacific"

0 comments on commit de1b2c6

Please sign in to comment.