Skip to content

Commit

Permalink
Merge pull request #311 from rajpalc7/dependabot
Browse files Browse the repository at this point in the history
chore: updating dependabot file to support GHA, Python and docker packages
  • Loading branch information
WadeBarnes authored May 29, 2024
2 parents 533d24b + 9885b95 commit 0b0ded0
Showing 1 changed file with 25 additions and 10 deletions.
35 changes: 25 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,35 @@
# For details on how this file works refer to:
# - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
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
day: monday
time: 01:00
timezone: Canada/Pacific
interval: "weekly"
groups:
all-actions:
patterns: [ "*" ]

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

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

0 comments on commit 0b0ded0

Please sign in to comment.