Skip to content

Commit d04c8e8

Browse files
committed
Added a “repo-token” to the Install Protoc GitHub action steps
1 parent b69902d commit d04c8e8

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/e2e.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232

3333
- name: Install Protoc
3434
uses: arduino/setup-protoc@v3
35+
with:
36+
repo-token: ${{ secrets.GITHUB_TOKEN }}
3537

3638
- name: 📥 Download deps
3739
run: pnpm install --frozen-lockfile

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
4040

4141
- name: Install Protoc
4242
uses: arduino/setup-protoc@v3
43+
with:
44+
repo-token: ${{ secrets.GITHUB_TOKEN }}
4345

4446
- name: 📥 Download deps
4547
run: pnpm install --frozen-lockfile

.github/workflows/typecheck.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424

2525
- name: Install Protoc
2626
uses: arduino/setup-protoc@v3
27+
with:
28+
repo-token: ${{ secrets.GITHUB_TOKEN }}
2729

2830
- name: 📥 Download deps
2931
run: pnpm install --frozen-lockfile

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424

2525
- name: Install Protoc
2626
uses: arduino/setup-protoc@v3
27+
with:
28+
repo-token: ${{ secrets.GITHUB_TOKEN }}
2729

2830
- name: ⎔ Setup Deno
2931
uses: denoland/setup-deno@v1

0 commit comments

Comments
 (0)