Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Create dependabot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mishraomp authored Dec 2, 2023
1 parent f483a0b commit df2c5f3
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies defined in package.json file for npm
- package-ecosystem: "npm"
directory: "/uis/react-sample" # Target directory the root package.json is located in.
schedule:
interval: "daily"
# Use targeted versioning strategy
versioning-strategy: "lockfile-only"
# Maintain dependencies defined in package.json file for npm
- package-ecosystem: "npm"
directory: "/uis/vue-sample" # Target directory the root package.json is located in.
schedule:
interval: "daily"
# Use targeted versioning strategy
versioning-strategy: "lockfile-only"
- package-ecosystem: "npm"
directory: "/apis/TypeScript/Nest" # Target directory the root package.json is located in.
schedule:
interval: "daily"
# Use targeted versioning strategy
versioning-strategy: "lockfile-only"

# Maintain dependencies for Maven (Java)
- package-ecosystem: "maven"
directory: "/apis/java/quarkus" # Target directory the pom.xml is located in.
schedule:
interval: "daily"
# Maintain dependencies for Maven (Java)
- package-ecosystem: "maven"
directory: "/apis/java/quarkus-legacy-oracle" # Target directory the pom.xml is located in.
schedule:
interval: "daily"
# Maintain dependencies for Maven (Java)
- package-ecosystem: "maven"
directory: "/apis/java/sb-crud-api" # Target directory the pom.xml is located in.
schedule:
interval: "daily"

0 comments on commit df2c5f3

Please sign in to comment.