Skip to content

Instantly share code, notes, and snippets.

@jonasbn
Created June 1, 2021 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonasbn/702525518ff7861097c5d6ff1c5d07b3 to your computer and use it in GitHub Desktop.
Save jonasbn/702525518ff7861097c5d6ff1c5d07b3 to your computer and use it in GitHub Desktop.
Basic dependabot configuration (dependabot.yml)
# Basic dependabot.yml file
# REF: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-actions-up-to-date-with-dependabot
version: 2
updates:
# Enable version updates for Docker
- package-ecosystem: "docker"
# Look for a `Dockerfile` in the `root` directory
directory: "/"
# Check for updates once a week
schedule:
interval: "weekly"
# Assign pull requests to an assignee
assignees:
- "jonasbn"
# Enable version updates for Actions
- package-ecosystem: "github-actions"
# Look for `.github/workflows` in the `root` directory
directory: "/"
# Check for updates once a week
schedule:
interval: "weekly"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment