From bac320f00735a6eaff06feb3f58f723348a20db7 Mon Sep 17 00:00:00 2001 From: Kiichiro YUKAWA Date: Fri, 15 Nov 2024 13:50:27 +0900 Subject: [PATCH] :green_heart: use ci-container for update deps cron job (#2744) Signed-off-by: vankichi --- .github/workflows/update-deps.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-deps.yaml b/.github/workflows/update-deps.yaml index 27c86fb2a0..0fbd06c65b 100644 --- a/.github/workflows/update-deps.yaml +++ b/.github/workflows/update-deps.yaml @@ -24,8 +24,13 @@ jobs: steps: - uses: actions/checkout@v4 - uses: vdaas/vald/.github/actions/dump-context@main + detect-ci-container: + uses: ./.github/workflows/_detect-ci-container.yaml update-version: runs-on: ubuntu-latest + needs: [detect-ci-container] + container: + image: ghcr.io/vdaas/vald/vald-ci-container:${{ needs.detect-ci-container.outputs.TAG }} steps: - uses: actions/checkout@v4 with: @@ -42,7 +47,6 @@ jobs: run: | make files make update - make deps make helm/schema/all make k8s/manifest/update make k8s/manifest/helm-operator/update @@ -50,6 +54,7 @@ jobs: make helm/docs/vald make helm/docs/vald-helm-operator make helm/docs/vald-benchmark-operator + : # delete `make license` if it is not needed. make license make format make perm