Revision 591e861fc54c319299c012e99c2b2f77918745ca authored by Steve Von Worley on 04 January 2023, 19:13:55 UTC, committed by GitHub on 04 January 2023, 19:13:55 UTC
https://ucsc-cgl.atlassian.net/browse/DOCK-2004
#4599
1 parent 7bb9cf8
Raw File
dependabot.yml
version: 2
updates:

  # Maintain dependencies for GitHub Actions, path is indeed "/" https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot#enabling-dependabot-version-updates-for-actions
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "daily"
    reviewers:
      - "dockstore/dockstore"        

  # Maintain dependencies for Maven
  - package-ecosystem: "maven"
    directory: "/"
    schedule:
      interval: "daily"
    # start with security updates only https://stackoverflow.com/a/68254421
    open-pull-requests-limit: 0  
    reviewers:
      - "dockstore/dockstore"        
      
  # Maintain dependencies for Dockerfile
  - package-ecosystem: "docker"
    directory: "/"
    schedule:
      interval: "daily"
    # start with security updates only https://stackoverflow.com/a/68254421  
    open-pull-requests-limit: 0
    reviewers:
      - "dockstore/dockstore"   

  # Maintain dependencies for swagger-ui and cwltool
  - package-ecosystem: "pip"
    directory: "/"
    schedule:
      interval: "daily"
    # start with security updates only https://stackoverflow.com/a/68254421
    reviewers:
      - "dockstore/dockstore"        
back to top