docbrown/.github/dependabot.yml
rhymes ca202b0883
Downgrade binding_of_caller to fix Docker compose (#12148)
* Revert "Bump binding_of_caller from 0.8.0 to 1.0.0 (#12059)"

This reverts commit 2e4618a7fa.

* Add explanation

* Tell dependabot to ignore updates
2021-01-06 17:02:27 +01:00

29 lines
945 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 binding_of_caller 1.0 temporarily until we find a solution for it breaking Docker
# see <https://github.com/forem/forem/issues/12068>
- dependency-name: "binding_of_caller"
versions: [">= 1.0"]
# 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"