summaryrefslogtreecommitdiff
path: root/.github/dependabot.yml
blob: d8a3564cb3afe3cc8f83930bee0f5c92c02e396c (plain)
1
2
3
4
5
6
7
8
9
10
version: 2
updates:
  # Maintain dependencies for GitHub Actions
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "daily"
    labels:
      - internal
      - dependencies
bgstack15