From d9c840f70fed950fcdc6a0406c7d162db2a0199f Mon Sep 17 00:00:00 2001 From: pancho horrillo Date: Thu, 1 Oct 2020 17:43:42 +0200 Subject: [PATCH] chore: enable dependabot . Check GitHub Actions, Go modules and Docker --- .github/dependabot.yml | 16 ++++++++++++++++ .github/go/Dockerfile | 1 + 2 files changed, 17 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/go/Dockerfile diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..553d8f6 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + + - package-ecosystem: "docker" + directory: "/.github/go" + schedule: + interval: "daily" diff --git a/.github/go/Dockerfile b/.github/go/Dockerfile new file mode 100644 index 0000000..5981b61 --- /dev/null +++ b/.github/go/Dockerfile @@ -0,0 +1 @@ +FROM golang:1.14.3