Skip to content

Commit

Permalink
build: configure dependabot to update packaging Dockerfiles
Browse files Browse the repository at this point in the history
See dependabot/dependabot-core#2824

Followup on #2306

Signed-off-by: Alexander Yastrebov <alexander.yastrebov@zalando.de>
  • Loading branch information
AlexanderYastrebov committed Jul 17, 2023
1 parent 265b32b commit 5709884
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
# 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

# * https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# * https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/" # Location of package manifests
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#directory
directory: "/" # For GitHub Actions, set the directory to / to check for workflow files in .github/workflows
schedule:
interval: "weekly"
- package-ecosystem: "docker" # Keep Docker dependencies up to date
# Keep Docker dependencies up to date
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/packaging"
schedule:
interval: "daily"

0 comments on commit 5709884

Please sign in to comment.