Skip to content

Commit

Permalink
add dependency bot updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Camila Macedo committed Sep 21, 2022
1 parent 3bfc84e commit f7c9f66
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
# Workflow files stored in the
# default location of `.github/workflows`
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for go
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for dockerfile in the branches
- package-ecosystem: docker
directory: "/build/thirdparty/darwin"
target-branch: "tools-releases"
schedule:
interval: daily
- package-ecosystem: docker
directory: "/build/thirdparty/linux"
target-branch: "tools-releases"
schedule:
interval: daily

# Maintain dependencies for dockerfile scaffold in the projects
- package-ecosystem: docker
directory: "/project-v3"
schedule:
interval: daily
- package-ecosystem: docker
directory: "/project-v4"
schedule:
interval: daily

0 comments on commit f7c9f66

Please sign in to comment.