Skip to content

Commit a8b5ccc

Browse files
authored
Enhance Dependabot config for multiple ecosystems (#20)
Updated Dependabot configuration to include GitHub Actions, Cargo, and NPM with daily update schedules.
1 parent c1ba5c0 commit a8b5ccc

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "daily"
12+
time: "03:00"
13+
- package-ecosystem: "cargo"
14+
directories:
15+
- "/"
16+
schedule:
17+
interval: "daily"
18+
time: "03:00"
19+
- package-ecosystem: "npm"
20+
directory: "/src/js-host-api"
21+
schedule:
22+
interval: "daily"
23+
time: "03:00"

0 commit comments

Comments
 (0)