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

chore: updating dependabot file to support GHA, TS, JS, dev container and docker packages #1881

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
71 changes: 43 additions & 28 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,39 +1,54 @@
########################################################################################################################################
# GitHub Dependabot Config info #
# 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 NPM
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'monthly'
allow:
# Focus on main dependencies, not devDependencies
- dependency-type: 'production'

# Maintain dependencies for GitHub Actions
# - Check for updates once a month
# - 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: 'monthly'
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 dev Container
- package-ecosystem: "devcontainers"
directory: "/.devcontainer"
schedule:
interval: "weekly"
day: "monday"
time: "04:00"
timezone: "Canada/Pacific"

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

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

Loading