/ scripts / .github / dependabot.yml
dependabot.yml
 1  version: 2
 2  updates:
 3    # Enable version updates for Cargo
 4    - package-ecosystem: "cargo"
 5      # Look for `Cargo.toml` and `Cargo.lock` in the root directory (`/`)
 6      directory: "/"
 7      # Check for updates daily
 8      schedule:
 9        interval: "daily"
10      # Optional: Add labels to Dependabot PRs
11      # labels:
12      #   - "dependencies"
13      # Optional: Assign reviewers
14      # reviewers:
15      #  - "bordumb"
16  
17    # Optional: Enable updates for GitHub Actions used in workflows
18    # - package-ecosystem: "github-actions"
19    #   directory: "/"
20    #   schedule:
21    #     interval: "weekly"