Merge branch 'main' into cert_controllers

This commit is contained in:
Ryan Richard 2020-08-10 19:01:36 -07:00
commit 626fc6aa8d
3 changed files with 35 additions and 2 deletions

33
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,33 @@
# 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: "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:
interval: "daily"

View File

@ -1,7 +1,7 @@
# Copyright 2020 VMware, Inc.
# SPDX-License-Identifier: Apache-2.0
FROM golang:1.14-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"

View File

@ -52,7 +52,7 @@ function with_modules() {
function usage() {
echo "Error: <task> must be specified"
echo " do.sh <task> [tidy, lint, test]"
echo " do.sh <task> [tidy, lint, test, unittest]"
exit 1
}