From 50c9bd4e9169d96e0b540f3da6d030add826970d Mon Sep 17 00:00:00 2001 From: Dale Haiducek <19750917+dhaiducek@users.noreply.github.com> Date: Fri, 9 Feb 2024 16:08:33 -0500 Subject: [PATCH] Sync common Makefile and Dependabot Signed-off-by: Dale Haiducek <19750917+dhaiducek@users.noreply.github.com> --- .github/dependabot.yml | 10 ++++++++++ build/common/Makefile.common.mk | 1 + 2 files changed, 11 insertions(+) create mode 100644 .github/dependabot.yml 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