diff --git a/.github/workflows/fix-version-gaps.yml b/.github/workflows/fix-version-gaps.yml index bdeffcf380384..77a56a268f20d 100644 --- a/.github/workflows/fix-version-gaps.yml +++ b/.github/workflows/fix-version-gaps.yml @@ -33,7 +33,7 @@ jobs: path: ./actions - name: Install Actions - run: npm install --production --prefix ./actions + run: npm ci --omit=dev --prefix ./actions - name: Run Fix Gaps uses: ./actions/fix-version-gaps diff --git a/.github/workflows/label-failed-test.yml b/.github/workflows/label-failed-test.yml index 79ad5673f38af..ec5114803639e 100644 --- a/.github/workflows/label-failed-test.yml +++ b/.github/workflows/label-failed-test.yml @@ -25,5 +25,5 @@ jobs: GITHUB_TOKEN: ${{secrets.KIBANAMACHINE_TOKEN}} SLACK_TOKEN: ${{secrets.SLACK_TOKEN_FAILED_TEST_NOTIFIER}} run: | - npm install + npm ci --omit=dev node failed-test-label ${{github.event.issue.number}} || true diff --git a/.github/workflows/skip-failed-test.yml b/.github/workflows/skip-failed-test.yml index 5950ed7e74c54..4c6d7c94b808d 100644 --- a/.github/workflows/skip-failed-test.yml +++ b/.github/workflows/skip-failed-test.yml @@ -20,7 +20,7 @@ jobs: path: ./actions - name: Install Actions - run: npm install --production --prefix ./actions + run: npm ci --omit=dev --prefix ./actions - name: User Permission Check uses: ./actions/permission-check @@ -43,5 +43,5 @@ jobs: GITHUB_TOKEN: ${{secrets.KIBANAMACHINE_TOKEN}} SLACK_TOKEN: ${{secrets.SLACK_TOKEN_FAILED_TEST_NOTIFIER}} run: | - npm install + npm ci --omit=dev node failed-test-auto ${{github.event.issue.number}}