Skip to content

Commit

Permalink
Merge pull request #1660 from rajpalc7/dependabot
Browse files Browse the repository at this point in the history
chore: updating dependabot to support gha, python, docker and dev container
  • Loading branch information
WadeBarnes committed May 13, 2024
2 parents 284214b + d3f9d13 commit 2766ea4
Showing 1 changed file with 74 additions and 4 deletions.
78 changes: 74 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,80 @@ 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: [ "*" ]
patterns: [ "*" ]

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

# Maintain dependencies for Python Packages
- package-ecosystem: "pip"
directory: "/docs/source"
schedule:
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: "/.devcontainer"
schedule:
interval: "weekly"
day: "monday"
time: "04:00"
timezone: "Canada/Pacific"

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

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

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

# Maintain dependencies for dev Container
- package-ecosystem: "devcontainers"
directory: "/.devcontainer"
schedule:
interval: "weekly"
day: "monday"
time: "04:00"
timezone: "Canada/Pacific"

0 comments on commit 2766ea4

Please sign in to comment.