Skip to content

Commit 5bc7356

Browse files
authored
Fix non-deterministic npm install in ready-for-doc-review workflow (#59044)
1 parent a76b6d4 commit 5bc7356

File tree

5 files changed

+52
-19
lines changed

5 files changed

+52
-19
lines changed

.github/workflows/docs-review-collect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
cache: npm
3030

3131
- name: Install dependencies
32-
run: npm install @octokit/graphql
32+
run: npm ci
3333

3434
- name: Run script for audit-log-allowlists
3535
run: |

.github/workflows/os-ready-for-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
cache: npm
5555

5656
- name: Install dependencies
57-
run: npm install @octokit/graphql
57+
run: npm ci
5858

5959
- name: Run script
6060
run: |

.github/workflows/ready-for-doc-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
cache: npm
3434

3535
- name: Install dependencies
36-
run: npm install @octokit/graphql
36+
run: npm ci
3737

3838
- name: Set AUTHOR_LOGIN
3939
run: |

0 commit comments

Comments
 (0)