From fa0533fae989c8de121d529a0775aff45121fc5d Mon Sep 17 00:00:00 2001 From: Andrew Keesler Date: Mon, 10 Aug 2020 10:18:36 -0400 Subject: [PATCH 1/5] hack/module.sh: update usage with unittest command Signed-off-by: Andrew Keesler --- hack/module.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/module.sh b/hack/module.sh index 596137ce..2d2e970f 100755 --- a/hack/module.sh +++ b/hack/module.sh @@ -52,7 +52,7 @@ function with_modules() { function usage() { echo "Error: must be specified" - echo " do.sh [tidy, lint, test]" + echo " do.sh [tidy, lint, test, unittest]" exit 1 } From df3c387f2eab785c1228b4ff4c3a750829685f40 Mon Sep 17 00:00:00 2001 From: Matt Moyer Date: Mon, 10 Aug 2020 11:37:52 -0500 Subject: [PATCH 2/5] Add dependabot YAML configuration. Signed-off-by: Matt Moyer --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..02b86132 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +# See https://docs.github.com/en/github/administering-a-repository/enabling-and-disabling-version-updates + +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" From 5394008d6fdc5984741d93b7450c118f10d196c4 Mon Sep 17 00:00:00 2001 From: Matt Moyer Date: Mon, 10 Aug 2020 11:44:47 -0500 Subject: [PATCH 3/5] Temporarily downgrade our Docker base image to trigger dependabot. Signed-off-by: Matt Moyer --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f03e2545..6e1e1d0b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.14-alpine as build-env +FROM golang:1.14.6-alpine as build-env # It is important that these ARG's are defined after the FROM statement ARG ACCESS_TOKEN_USR="nothing" From b3df59ca1346229b4d524eaf7232782d45be2f55 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2020 16:46:08 +0000 Subject: [PATCH 4/5] Bump golang from 1.14.6-alpine to 1.14.7-alpine Bumps golang from 1.14.6-alpine to 1.14.7-alpine. Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6e1e1d0b..a41cc5e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.14.6-alpine as build-env +FROM golang:1.14.7-alpine as build-env # It is important that these ARG's are defined after the FROM statement ARG ACCESS_TOKEN_USR="nothing" From 63008988107ec77da30dcac0c338b0f49bf28d30 Mon Sep 17 00:00:00 2001 From: Matt Moyer Date: Mon, 10 Aug 2020 12:09:32 -0500 Subject: [PATCH 5/5] Add additional go.mod directories to dependabot. Signed-off-by: Matt Moyer --- .github/dependabot.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 02b86132..3290887b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,6 +7,26 @@ updates: schedule: interval: "daily" + - package-ecosystem: "gomod" + directory: "/test " + schedule: + interval: "daily" + + - package-ecosystem: "gomod" + directory: "/kubernetes/1.19/client-go/" + schedule: + interval: "daily" + + - package-ecosystem: "gomod" + directory: "/kubernetes/1.19/api/" + schedule: + interval: "daily" + + - package-ecosystem: "gomod" + directory: "/pkg/client" + schedule: + interval: "daily" + - package-ecosystem: "docker" directory: "/" schedule: