From 94ac9175f7a99a787be06905fa07a6074da9b71a Mon Sep 17 00:00:00 2001 From: Florent Poinsard <35779988+frouioui@users.noreply.github.com> Date: Mon, 22 Jan 2024 09:13:55 -0600 Subject: [PATCH] Reduce the frequency of the golang dependency upgrade CRON (#15008) Signed-off-by: Florent Poinsard --- .github/workflows/update_golang_dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_golang_dependencies.yml b/.github/workflows/update_golang_dependencies.yml index c641f52001d..3980d55cc13 100644 --- a/.github/workflows/update_golang_dependencies.yml +++ b/.github/workflows/update_golang_dependencies.yml @@ -2,7 +2,7 @@ name: Update Golang Dependencies on: schedule: - - cron: "0 0 * * 0" # Runs every week at midnight UTC + - cron: "0 0 1,15 * *" # Runs every month on the 1st and 15th days at midnight UTC workflow_dispatch: permissions: read-all