Skip to content

Commit 4f81caa

Browse files
committed
dependabot fix
1 parent a80ce00 commit 4f81caa

File tree

1 file changed

+45
-6
lines changed

1 file changed

+45
-6
lines changed

.github/dependabot.yml

Lines changed: 45 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,50 @@
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:
1+
# Dependabot configuration
42
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
53

6-
version: 2
4+
version: 2
75
updates:
8-
- package-ecosystem: "" # See documentation for possible values
9-
directory: "/" # Location of package manifests
6+
# Python dependencies (uv/pip)
7+
- package-ecosystem: "uv"
8+
directory: "/backend"
109
schedule:
1110
interval: "weekly"
11+
commit-message:
12+
prefix: "deps(python)"
13+
14+
# Frontend npm dependencies
15+
- package-ecosystem: "npm"
16+
directory: "/frontend"
17+
schedule:
18+
interval: "weekly"
19+
commit-message:
20+
prefix: "deps(npm)"
21+
22+
# Docker base images
23+
- package-ecosystem: "docker"
24+
directory: "/backend"
25+
schedule:
26+
interval: "weekly"
27+
commit-message:
28+
prefix: "deps(docker)"
29+
30+
- package-ecosystem: "docker"
31+
directory: "/frontend"
32+
schedule:
33+
interval: "weekly"
34+
commit-message:
35+
prefix: "deps(docker)"
36+
37+
- package-ecosystem: "docker"
38+
directory: "/cert-generator"
39+
schedule:
40+
interval: "weekly"
41+
commit-message:
42+
prefix: "deps(docker)"
43+
44+
# GitHub Actions
45+
- package-ecosystem: "github-actions"
46+
directory: "/"
47+
schedule:
48+
interval: "weekly"
49+
commit-message:
50+
prefix: "deps(actions)"

0 commit comments

Comments
 (0)