From cecd8d1af6308880e55fae5ee511324cbf642c1e Mon Sep 17 00:00:00 2001 From: Jonathan Yu Date: Sat, 6 Mar 2021 21:15:24 +0000 Subject: [PATCH] chore: use dependabot to manage dependencies Use dependabot to manage the dependencies defined in go.mod and GitHub Actions workflows, so that we can proactively update versions. Outdated versions of third-party dependencies frequently have known security vulnerabilities with CVEs. --- .github/dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..84e217d3 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +version: 2 +updates: +- package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + time: "11:00" + open-pull-requests-limit: 10 + assignees: + - "dependabot" + +- package-ecosystem: gomod + directory: "/" + schedule: + interval: daily + time: "11:00" + open-pull-requests-limit: 10 + assignees: + - "dependabot"