Skip to content
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
14 changes: 12 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@

version: 2
updates:
- package-ecosystem: "*" # See documentation for possible values
directory: "/" # Location of package manifests
- package-ecosystem: "maven"
directories:
- "/**" # cover the root + all Maven submodules (common/*, spark/*, ...)
schedule:
interval: "weekly"
open-pull-requests-limit: 10
ignore:
# --- provided scope: supplied by the Spark runtime, not shipped by Zingg ---
- dependency-name: "org.apache.spark:*"
- dependency-name: "org.scala-lang:*"
- dependency-name: "com.fasterxml.jackson.core:jackson-core"

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if jackson is compile scope how can we ignore it?

- dependency-name: "com.fasterxml.jackson.core:jackson-databind"
# NOTE: jackson-annotations is `compile` scope (shipped in the jar) — do
# NOT ignore it; its alerts are real and actionable.
Loading