Skip to content

Commit 8a93b37

Browse files
committed
build: do not install jq in workflows
It is already installed in the GitHub runners. PR-URL: #35638 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent c143266 commit 8a93b37

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/auto-start-ci.yml

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
- uses: actions/checkout@v2
1818

1919
# Install dependencies
20-
- name: Install jq
21-
run: sudo apt-get install jq -y
2220
- name: Install Node.js
2321
uses: actions/setup-node@v2-beta
2422
with:

.github/workflows/commit-queue.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,8 @@ jobs:
3535
uses: actions/setup-node@v2-beta
3636
with:
3737
node-version: '12'
38-
- name: Install dependencies
39-
run: |
40-
sudo apt-get install jq -y
41-
npm install -g node-core-utils@latest
38+
- name: Install node-core-utils
39+
run: npm install -g node-core-utils@latest
4240

4341
- name: Set variables
4442
run: |

0 commit comments

Comments
 (0)