docbrown/.github/dependabot.yml

31 lines
1,017 B
YAML

# Update dependencies with Dependabot
version: 2
updates:
# Set update schedule for Ruby Bundler
- package-ecosystem: "bundler"
# Raise pull requests to update vendored dependencies that are checked in to the repository
vendor: true
directory: "/"
schedule:
interval: "daily"
ignore:
# Ignoring simplecov 0.18+ temporarily, until CodeClimate's test reporter is
# upgraded to work with it
# see <https://github.com/codeclimate/test-reporter/issues/413>
# and <https://rubygems.org/gems/simplecov>
- dependency-name: "simplecov"
versions: [">= 0.18"]
# Set update schedule for Yarn/NPM
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
# Set update schedule for GitHub Actions
# https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/keeping-your-actions-up-to-date-with-dependabot
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"