Skip to content

Commit

Permalink
fix: dependabot security patch only
Browse files Browse the repository at this point in the history
  • Loading branch information
sriramveeraghanta committed Nov 16, 2024
1 parent 1b1b160 commit 35938b5
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@ updates:
patterns:
- "turbo"
- "@turbo/*"
allow:
- dependency-type: "all"
security-updates-only: true

# Web App
- package-ecosystem: "npm"
security-updates-only: true
directory: "/web"
schedule:
interval: "weekly"
Expand All @@ -37,6 +41,7 @@ updates:

# Admin App
- package-ecosystem: "npm"
security-updates-only: true
directory: "/admin"
schedule:
interval: "weekly"
Expand All @@ -55,6 +60,7 @@ updates:

# Sites App
- package-ecosystem: "npm"
security-updates-only: true
directory: "/space"
schedule:
interval: "weekly"
Expand All @@ -73,7 +79,8 @@ updates:

# Live Server
- package-ecosystem: "npm"
directory: "/live" # Adjust path for your Node.js app
security-updates-only: true
directory: "/live"
schedule:
interval: "weekly"
labels:
Expand All @@ -83,7 +90,8 @@ updates:

# Python service
- package-ecosystem: "pip"
directory: "/apiserver" # Adjust path for your Python app
security-updates-only: true
directory: "/apiserver"
schedule:
interval: "weekly"
labels:
Expand All @@ -93,6 +101,7 @@ updates:

# GitHub Actions
- package-ecosystem: "github-actions"
security-updates-only: true
directory: "/"
schedule:
interval: "weekly"
Expand All @@ -102,6 +111,7 @@ updates:

# Docker dependencies
- package-ecosystem: "docker"
security-updates-only: true
directory: "/"
schedule:
interval: "weekly"
Expand Down

0 comments on commit 35938b5

Please sign in to comment.