diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..6c5049e2 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + groups: + github-actions: + patterns: + - "*" diff --git a/build/common/Makefile.common.mk b/build/common/Makefile.common.mk index dd345c68..d31b64af 100755 --- a/build/common/Makefile.common.mk +++ b/build/common/Makefile.common.mk @@ -93,6 +93,7 @@ fmt: fmt-dependencies find . -not \( -path "./.go" -prune \) -name "*.go" | xargs gofmt -s -w find . -not \( -path "./.go" -prune \) -name "*.go" | xargs gofumpt -l -w find . -not \( -path "./.go" -prune \) -name "*.go" | xargs gci write --skip-generated -s standard -s default -s "prefix($(shell cat go.mod | head -1 | cut -d " " -f 2))" + go mod tidy ############################################################ # Unit Test