From 8a93b371a324ddda435589297578209938e255ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Wed, 14 Oct 2020 11:13:03 +0200 Subject: [PATCH] build: do not install jq in workflows It is already installed in the GitHub runners. PR-URL: https://github.com/nodejs/node/pull/35638 Reviewed-By: Richard Lau Reviewed-By: Rich Trott Reviewed-By: Luigi Pinca Reviewed-By: James M Snell --- .github/workflows/auto-start-ci.yml | 2 -- .github/workflows/commit-queue.yml | 6 ++---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml index 6ca3392720562d..79f3cbd9de64ab 100644 --- a/.github/workflows/auto-start-ci.yml +++ b/.github/workflows/auto-start-ci.yml @@ -17,8 +17,6 @@ jobs: - uses: actions/checkout@v2 # Install dependencies - - name: Install jq - run: sudo apt-get install jq -y - name: Install Node.js uses: actions/setup-node@v2-beta with: diff --git a/.github/workflows/commit-queue.yml b/.github/workflows/commit-queue.yml index cca9564f6c873b..04b7f2be8ae7a9 100644 --- a/.github/workflows/commit-queue.yml +++ b/.github/workflows/commit-queue.yml @@ -35,10 +35,8 @@ jobs: uses: actions/setup-node@v2-beta with: node-version: '12' - - name: Install dependencies - run: | - sudo apt-get install jq -y - npm install -g node-core-utils@latest + - name: Install node-core-utils + run: npm install -g node-core-utils@latest - name: Set variables run: |