Skip to content

Commit 6813673

Browse files
committed
fix permissions
1 parent 63c6b7c commit 6813673

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/gen-node-proto.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ on:
1616
workflow_dispatch:
1717
workflow_call:
1818

19+
permissions:
20+
contents: write
21+
1922
concurrency:
2023
group: ${{ github.workflow }}-${{ github.sha }}
2124
cancel-in-progress: false
@@ -44,6 +47,9 @@ jobs:
4447
version: "25.1"
4548
repo-token: ${{ secrets.GITHUB_TOKEN }}
4649

50+
- name: Install prost generators
51+
run: cargo install protoc-gen-prost@0.3.1 protoc-gen-prost-serde@0.3.1
52+
4753
- name: generate JS stubs
4854
run: ./generate_proto.sh
4955

.github/workflows/node-builds.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: Node FFI binding build and release
33
permissions:
44
id-token: write # Required for OIDC
55
contents: write # Required to create GH releases
6-
pull-requests: write # Required to interact with PRs
76

87
on:
98
workflow_dispatch:

0 commit comments

Comments
 (0)