Skip to content

Commit

Permalink
Update dependabot.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Raydo M <[email protected]>
  • Loading branch information
burnt-exe authored Aug 29, 2024
1 parent 68d05c9 commit 773b3fa
Showing 1 changed file with 30 additions and 13 deletions.
43 changes: 30 additions & 13 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,40 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

# Dependabot configuration file
version: 2
updates:
# Update npm dependencies
- package-ecosystem: "npm"
directory: "/"
directory: "/" # The root directory containing package.json
schedule:
interval: "weekly"
interval: "weekly" # Check for updates every week
# Optionally, specify a day and time for the updates
# day: "monday"
# time: "04:00"

# Update Bundler dependencies (for Ruby)
- package-ecosystem: "bundler"
directory: "/"
directory: "/" # The root directory containing Gemfile
schedule:
interval: "weekly"
interval: "weekly" # Check for updates every week
# Optionally, specify a day and time for the updates
# day: "tuesday"
# time: "05:00"

# Update Docker dependencies
- package-ecosystem: "docker"
directory: "/"
directory: "/" # The directory containing your Dockerfile
schedule:
interval: "weekly"
interval: "weekly" # Check for updates every week
# Optionally, specify a day and time for the updates
# day: "wednesday"
# time: "06:00"

# Update Python dependencies (for pip)
- package-ecosystem: "pip"
directory: "/"
directory: "/" # The root directory containing requirements.txt or pyproject.toml
schedule:
interval: "weekly"
interval: "weekly" # Check for updates every week
# Optionally, specify a day and time for the updates
# day: "thursday"
# time: "07:00"

# You can add more configurations for different package ecosystems as needed.

0 comments on commit 773b3fa

Please sign in to comment.