From 00b14ffca29c9d54b418355f9f6e841dd97a958b Mon Sep 17 00:00:00 2001 From: schmidtw Date: Mon, 8 Aug 2022 15:20:37 -0700 Subject: [PATCH] Migrate to use dependabot for dependency updates. --- .github/dependabot.yml | 6 ++++++ .github/workflows/updater.yml | 15 --------------- 2 files changed, 6 insertions(+), 15 deletions(-) create mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/updater.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..36b24f2 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: gomod + directory: / + schedule: + interval: daily diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml deleted file mode 100644 index ef5876f..0000000 --- a/.github/workflows/updater.yml +++ /dev/null @@ -1,15 +0,0 @@ -# SPDX-FileCopyrightText: 2022 Comcast Cable Communications Management, LLC -# SPDX-License-Identifier: Apache-2.0 ---- -name: Dependency Updater - -on: - schedule: - # Run every week 9:05 AM UTC (Monday at 1:00 AM PT) - - cron: '05 9 * * 1' - workflow_dispatch: - -jobs: - ci: - uses: xmidt-org/.github/.github/workflows/go-updater.yml@go-updater-v1 - secrets: inherit