Skip to content

Commit

Permalink
chore: add dependabot config (#67)
Browse files Browse the repository at this point in the history
*Issue #, if available:*
N/A

*Description of changes:*
This PR adds explicit configuration for dependabot for Go dependency and
GitHub Actions dependency updates

By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice.

Signed-off-by: Austin Vazquez <[email protected]>
  • Loading branch information
austinvazquez authored Mar 23, 2024
1 parent d4df5dd commit b50076a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

version: 2
updates:
# Dependencies listed in go.mod
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
# Dependencies listed in .github/workflows/*.yml
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

0 comments on commit b50076a

Please sign in to comment.