|
| 1 | +# Config for Dependabot updates. See Documentation here: |
| 2 | +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates |
| 3 | + |
| 4 | +version: 2 |
| 5 | +updates: |
| 6 | + # Update GitHub actions in workflows |
| 7 | + - package-ecosystem: "github-actions" |
| 8 | + directory: "/" |
| 9 | + # Check for updates to GitHub Actions every weekday |
| 10 | + schedule: |
| 11 | + interval: "daily" |
| 12 | + |
| 13 | + # Enable version updates for Docker |
| 14 | + # We need to specify each Dockerfile in a separate entry because Dependabot doesn't |
| 15 | + # support wildcards or recursively checking subdirectories. Check this issue for updates: |
| 16 | + # https://github.com/dependabot/dependabot-core/issues/2178 |
| 17 | + - package-ecosystem: "docker" |
| 18 | + # Look for a `Dockerfile` in the `compose/local/django` directory |
| 19 | + directory: "compose/local/django/" |
| 20 | + # Check for updates to GitHub Actions every weekday |
| 21 | + schedule: |
| 22 | + interval: "daily" |
| 23 | + |
| 24 | + # Enable version updates for Docker |
| 25 | + - package-ecosystem: "docker" |
| 26 | + # Look for a `Dockerfile` in the `compose/local/docs` directory |
| 27 | + directory: "compose/local/docs/" |
| 28 | + # Check for updates to GitHub Actions every weekday |
| 29 | + schedule: |
| 30 | + interval: "daily" |
| 31 | + |
| 32 | + # Enable version updates for Docker |
| 33 | + - package-ecosystem: "docker" |
| 34 | + # Look for a `Dockerfile` in the `compose/local/node` directory |
| 35 | + directory: "compose/local/node/" |
| 36 | + # Check for updates to GitHub Actions every weekday |
| 37 | + schedule: |
| 38 | + interval: "daily" |
| 39 | + |
| 40 | + # Enable version updates for Docker |
| 41 | + - package-ecosystem: "docker" |
| 42 | + # Look for a `Dockerfile` in the `compose/production/aws` directory |
| 43 | + directory: "compose/production/aws/" |
| 44 | + # Check for updates to GitHub Actions every weekday |
| 45 | + schedule: |
| 46 | + interval: "daily" |
| 47 | + |
| 48 | + # Enable version updates for Docker |
| 49 | + - package-ecosystem: "docker" |
| 50 | + # Look for a `Dockerfile` in the `compose/production/django` directory |
| 51 | + directory: "compose/production/django/" |
| 52 | + # Check for updates to GitHub Actions every weekday |
| 53 | + schedule: |
| 54 | + interval: "daily" |
| 55 | + |
| 56 | + # Enable version updates for Docker |
| 57 | + - package-ecosystem: "docker" |
| 58 | + # Look for a `Dockerfile` in the `compose/production/postgres` directory |
| 59 | + directory: "compose/production/postgres/" |
| 60 | + # Check for updates to GitHub Actions every weekday |
| 61 | + schedule: |
| 62 | + interval: "daily" |
| 63 | + |
| 64 | + # Enable version updates for Docker |
| 65 | + - package-ecosystem: "docker" |
| 66 | + # Look for a `Dockerfile` in the `compose/production/traefik` directory |
| 67 | + directory: "compose/production/traefik/" |
| 68 | + # Check for updates to GitHub Actions every weekday |
| 69 | + schedule: |
| 70 | + interval: "daily" |
| 71 | + |
| 72 | + # Enable version updates for Python/Pip - Production |
| 73 | + - package-ecosystem: "pip" |
| 74 | + # Look for a `requirements.txt` in the `root` directory |
| 75 | + # also 'setup.cfg', 'runtime.txt' and 'requirements/*.txt' |
| 76 | + directory: "/" |
| 77 | + # Check for updates to GitHub Actions every weekday |
| 78 | + schedule: |
| 79 | + interval: "daily" |
| 80 | + |
| 81 | + # Enable version updates for javascript/npm |
| 82 | + - package-ecosystem: "npm" |
| 83 | + # Look for a `packages.json' in the `root` directory |
| 84 | + directory: "/" |
| 85 | + # Check for updates to GitHub Actions every weekday |
| 86 | + schedule: |
| 87 | + interval: "daily" |
0 commit comments