Skip to content

Commit de5c832

Browse files
authored
chore(ci): fix install protoc limit (#2117)
1 parent 40f90bb commit de5c832

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/bundle-stats.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
uses: actions/checkout@v3
1919
- name: Install protoc
2020
uses: arduino/setup-protoc@v1
21+
with:
22+
repo-token: ${{ secrets.GITHUB_TOKEN }}
2123
- uses: actions/setup-node@v3
2224
with:
2325
node-version: "16"

.github/workflows/check-rs.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ jobs:
6161
repo-token: ${{ secrets.GITHUB_TOKEN }}
6262
- name: Install protoc
6363
uses: arduino/setup-protoc@v1
64+
with:
65+
repo-token: ${{ secrets.GITHUB_TOKEN }}
6466
- name: Install toolchain
6567
run: rustup show
6668
- name: Run cargo check
@@ -88,6 +90,8 @@ jobs:
8890
repo-token: ${{ secrets.GITHUB_TOKEN }}
8991
- name: Install protoc
9092
uses: arduino/setup-protoc@v1
93+
with:
94+
repo-token: ${{ secrets.GITHUB_TOKEN }}
9195
- uses: actions/setup-node@v3
9296
with:
9397
node-version: "16"

0 commit comments

Comments
 (0)