ouch 0.8.0

A command-line utility for easily compressing and decompressing files and directories.
# Dependabot configuration for ouch.
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
  - package-ecosystem: "cargo"
    directory: "/"
    schedule:
      interval: "weekly"
      day: "monday"
    open-pull-requests-limit: 10
    labels:
      - "dependencies"
    commit-message:
      prefix: "deps"
    cooldown:
      default-days: 7
    groups:
      # Patch and minor bumps land together to reduce PR churn.
      # Major bumps still get one PR each so they get a proper review.
      cargo-patch-and-minor:
        update-types:
          - "patch"
          - "minor"

  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "weekly"
      day: "monday"
    open-pull-requests-limit: 5
    labels:
      - "dependencies"
      - "ci"
    commit-message:
      prefix: "ci"
    cooldown:
      default-days: 7
    groups:
      # We are less likely to be affected by breaking changes in GitHub Actions
      # So Major bumps are accepted to reduce the amount of pull requests
      github-actions:
        patterns: ["*"]