This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |