From b9ac1454d912aae8da8889462c4c3b8c0a71362a Mon Sep 17 00:00:00 2001 From: Thomas Date: Mon, 30 Mar 2026 16:59:04 -0400 Subject: [PATCH] chore(ci): install vdev via setup action in ci-integration-review workflow --- .github/workflows/ci-integration-review.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-integration-review.yml b/.github/workflows/ci-integration-review.yml index a2a73c39e7d0e..30e359e366f30 100644 --- a/.github/workflows/ci-integration-review.yml +++ b/.github/workflows/ci-integration-review.yml @@ -117,14 +117,17 @@ jobs: submodules: "recursive" ref: ${{ github.event.review.commit_id }} + - uses: ./.github/actions/setup + with: + vdev: true + datadog-ci: true + - name: Pull test runner image uses: ./.github/actions/pull-test-runner with: github_token: ${{ secrets.GITHUB_TOKEN }} commit_sha: ${{ github.event.review.commit_id }} - - run: bash scripts/environment/prepare.sh --modules=datadog-ci - - name: Integration Tests - ${{ matrix.service }} if: ${{ startsWith(github.event.review.body, '/ci-run-integration-all') || startsWith(github.event.review.body, '/ci-run-all') @@ -156,14 +159,17 @@ jobs: submodules: "recursive" ref: ${{ github.event.review.commit_id }} + - uses: ./.github/actions/setup + with: + vdev: true + datadog-ci: true + - name: Pull test runner image uses: ./.github/actions/pull-test-runner with: github_token: ${{ secrets.GITHUB_TOKEN }} commit_sha: ${{ github.event.review.commit_id }} - - run: bash scripts/environment/prepare.sh --modules=datadog-ci - - name: E2E Tests - ${{ matrix.service }} if: ${{ startsWith(github.event.review.body, '/ci-run-e2e-all') || startsWith(github.event.review.body, '/ci-run-all')