Skip to content

Commit

Permalink
chore: updating dependabot file to support GHA, TS, JS and docker pac…
Browse files Browse the repository at this point in the history
…kages

Signed-off-by: Rajpal Chauhan <[email protected]>
  • Loading branch information
rajpalc7 committed May 23, 2024
1 parent ee41acc commit 2dc24e9
Showing 1 changed file with 37 additions and 6 deletions.
43 changes: 37 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,45 @@
# 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
# 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'
interval: "weekly"
groups:
all-actions:
patterns: ['*']
patterns: [ "*" ]

# Maintain dependencies for TypeScript and JavaScript
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "04:00"
timezone: "Canada/Pacific"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major", "version-update:semver-patch"]

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

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

0 comments on commit 2dc24e9

Please sign in to comment.