Skip to content

Commit

Permalink
Add Dependabot configuration
Browse files Browse the repository at this point in the history
- For automated dependency management.
- JASPER-100

Signed-off-by: Wade Barnes <[email protected]>
  • Loading branch information
WadeBarnes committed Oct 17, 2024
1 parent 2df0618 commit ff9f790
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# 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: /
schedule:
interval: weekly
groups:
all-actions:
patterns: [ "*" ]

# Maintain dependencies for devcontainers
- package-ecosystem: "devcontainers"
directory: "/.devcontainer"
schedule:
interval: "weekly"

# Maintain dependencies for docker
- package-ecosystem: "docker"
directory: "/.devcontainer"
schedule:
interval: "weekly"

- package-ecosystem: "docker"
directory: "/docker"
schedule:
interval: "weekly"

- package-ecosystem: "docker"
directory: "/docker/api"
schedule:
interval: "weekly"

- package-ecosystem: "docker"
directory: "/docker/nginx-runtime"
schedule:
interval: "weekly"

- package-ecosystem: "docker"
directory: "/docker/vue-on-nginx"
schedule:
interval: "weekly"

- package-ecosystem: "docker"
directory: "/docker/web"
schedule:
interval: "weekly"

# Maintain dependencies for Nuget
- package-ecosystem: "nuget"
directory: "/"
schedule:
interval: "weekly"

# Maintain dependencies for NPM
- package-ecosystem: "npm"
directory: "/web"
schedule:
interval: "weekly"

- package-ecosystem: "npm"
directory: "./infrastructure/jasper-aws-bootstrap"
schedule:
interval: "weekly"

0 comments on commit ff9f790

Please sign in to comment.