Skip to content

Commit

Permalink
Create dependabot.yml
Browse files Browse the repository at this point in the history
Created dependabot.yml in github actions to enable dependabot.
It will be updating the following dependencies:
- go modules in main package
- go modules in cmd package
- docker dependencies in the Dockerfile
- github actions

Signed-off-by: Viktor Kuznietsov <[email protected]>
  • Loading branch information
vkuzniet committed Oct 31, 2022
1 parent 317f3e1 commit 973e073
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 2
updates:

# Automatic upgrade for go modules.
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"

# Automatic upgrade for go modules of cmd package.
- package-ecosystem: "gomod"
directory: "/cmd"
schedule:
interval: "daily"

# Automatic upgrade for base images used in the Dockerfile
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"

# Automatic upgrade for Github Actions
- package-ecosystem: "github-actions"
directory: "/" # means ".github/workflows"
schedule:
interval: "daily"

0 comments on commit 973e073

Please sign in to comment.