From 057dee82954accc56575311ef15402d6618fab9a Mon Sep 17 00:00:00 2001 From: Tamal Saha Date: Sun, 18 Feb 2024 14:18:39 -0800 Subject: [PATCH] fix cve report generator workflow Signed-off-by: Tamal Saha --- .github/workflows/cve-report.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cve-report.yml b/.github/workflows/cve-report.yml index 68ad65584..e30f2d0d4 100644 --- a/.github/workflows/cve-report.yml +++ b/.github/workflows/cve-report.yml @@ -62,13 +62,14 @@ jobs: - name: Generate report run: | + ./hack/scripts/update-chart-dependencies.sh go run ./cmd/generate-cve-report/main.go - name: Update repo run: | git add --all if [[ $(git status --porcelain) ]]; then - git commit -s -a -m "update redis images $(date --rfc-3339=date)" + git commit -s -a -m "update cve report $(date --rfc-3339=date)" git fetch origin # https://git-scm.com/docs/merge-strategies git pull --rebase -s ours origin master