Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 9 additions & 63 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# Basic set up for three package managers

version: 2
version: 3
updates:

# Maintain dependencies for GitHub Actions
#Maintain dependencies for pip
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"

#Maintain dependencies for github-actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand All @@ -20,61 +23,4 @@ updates:
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "daily"


version: 2
updates:
- package-ecosystem: "composer"
# Files stored in repository root
directory: "/"
schedule:
interval: "daily"

- package-ecosystem: "npm"
# Files stored in `app` directory
directory: "/app"
schedule:
interval: "daily"

- package-ecosystem: "github-actions"
# Workflow files stored in the
#default location of `.github/workflows`
directory: "/"
schedule:
interval: "daily"

# Use `allow` to specify which dependencies to maintain

version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
allow:
# Allow updates for Lodash
- dependency-name: "lodash"
# Allow updates for React and any packages starting "react"
- dependency-name: "react*"

- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "daily"
allow:
# Allow both direct and indirect updates for all packages
- dependency-type: "all"

- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
allow:
# Allow only direct updates for
# Django and any packages starting "django"
- dependency-name: "django*"
dependency-type: "direct"
# Allow only production updates for Sphinx
- dependency-name: "sphinx"
dependency-type: "production"
interval: "daily"