From b50076ae1eacfd4d57f7111cb180460cddd010cc Mon Sep 17 00:00:00 2001 From: Austin Vazquez <55906459+austinvazquez@users.noreply.github.com> Date: Fri, 22 Mar 2024 22:30:12 -0700 Subject: [PATCH] chore: add dependabot config (#67) *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 --- .github/dependabot.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..81fd874 --- /dev/null +++ b/.github/dependabot.yml @@ -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" +