From d533628f8b21ba705deac67d5e6fe33463e3e296 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 7 Sep 2023 14:50:24 +0200 Subject: [PATCH] build(ci): run the dependency review only once MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 736af2eb..e8779473 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,7 @@ jobs: with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: 'Dependency Review' + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} uses: actions/dependency-review-action@v3 - uses: pnpm/action-setup@v2 with: @@ -61,6 +62,7 @@ jobs: with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: 'Dependency Review' + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} uses: actions/dependency-review-action@v3 - uses: pnpm/action-setup@v2 with: -- 2.34.1