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: update dependabot configuration to include yarn package ecosystem #2191

Merged
merged 2 commits into from
Jan 12, 2025
Merged
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
43 changes: 28 additions & 15 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
- package-ecosystem: 'github-actions'
directory: /
schedule:
day: sunday
Expand All @@ -23,9 +23,9 @@ updates:
groups:
otel-dependencies:
patterns:
- "go.opentelemetry.io*"
- 'go.opentelemetry.io*'
exclude-patterns: # go auto instrumentations update is manually
- "go.opentelemetry.io/auto"
- 'go.opentelemetry.io/auto'
- package-ecosystem: gomod
directory: /odiglet
schedule:
Expand All @@ -34,7 +34,7 @@ updates:
groups:
go-auto-instrumentations:
patterns:
- "go.opentelemetry.io/auto"
- 'go.opentelemetry.io/auto'
- package-ecosystem: gomod
directory: /autoscaler
schedule:
Expand All @@ -43,8 +43,8 @@ updates:
groups:
k8s-dependencies:
patterns:
- "k8s.io*"
- "sigs.k8s.io*"
- 'k8s.io*'
- 'sigs.k8s.io*'
- package-ecosystem: gomod
directory: /odiglet
schedule:
Expand All @@ -53,8 +53,8 @@ updates:
groups:
k8s-dependencies:
patterns:
- "k8s.io*"
- "sigs.k8s.io*"
- 'k8s.io*'
- 'sigs.k8s.io*'
- package-ecosystem: gomod
directory: /scheduler
schedule:
Expand All @@ -63,8 +63,8 @@ updates:
groups:
k8s-dependencies:
patterns:
- "k8s.io*"
- "sigs.k8s.io*"
- 'k8s.io*'
- 'sigs.k8s.io*'
- package-ecosystem: gomod
directory: /cli
schedule:
Expand All @@ -73,8 +73,8 @@ updates:
groups:
k8s-dependencies:
patterns:
- "k8s.io*"
- "sigs.k8s.io*"
- 'k8s.io*'
- 'sigs.k8s.io*'
- package-ecosystem: gomod
directory: /instrumentor
schedule:
Expand All @@ -83,8 +83,8 @@ updates:
groups:
k8s-dependencies:
patterns:
- "k8s.io*"
- "sigs.k8s.io*"
- 'k8s.io*'
- 'sigs.k8s.io*'
- package-ecosystem: pip
directory: /odiglet/agents/python
schedule:
Expand All @@ -93,4 +93,17 @@ updates:
groups:
otel-dependencies:
patterns:
- "opentelemetry*"
- 'opentelemetry*'
- package-ecosystem: yarn
directories:
- /frontend/webapp
- /docs
- /agents/nodejs-native-community
- /tests/e2e/workload-lifecycle/services/nodejs-http-server
schedule:
day: sunday
interval: weekly
groups:
otel-dependencies:
patterns:
- 'opentelemetry*'
Loading