Skip to content

Commit 74a1f8d

Browse files
build(deps): upgrade setup-protoc action and protoc version number
`arduino/setup-protoc@v3` could not find our old version number of `3.20.2`. I chose protoc version 27.4 because it's the last release from the prior version.
1 parent 6c8bf5f commit 74a1f8d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ jobs:
9292
path: .
9393

9494
- name: Install Protoc
95-
uses: arduino/setup-protoc@v1
95+
uses: arduino/setup-protoc@v3
9696
with:
97-
version: "3.20.2"
97+
version: "27.4"
9898
repo-token: ${{ secrets.GITHUB_TOKEN }}
9999

100100
- name: Build Python package
@@ -150,9 +150,9 @@ jobs:
150150
path: .
151151

152152
- name: Install Protoc
153-
uses: arduino/setup-protoc@v1
153+
uses: arduino/setup-protoc@v3
154154
with:
155-
version: "3.20.2"
155+
version: "27.4"
156156
repo-token: ${{ secrets.GITHUB_TOKEN }}
157157

158158
- name: Build Python package

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ jobs:
5252
python-version: "3.11"
5353

5454
- name: Install Protoc
55-
uses: arduino/setup-protoc@v1
55+
uses: arduino/setup-protoc@v3
5656
with:
57-
version: '3.20.2'
57+
version: '27.4'
5858
repo-token: ${{ secrets.GITHUB_TOKEN }}
5959

6060
- name: Install dependencies

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ jobs:
5050
override: true
5151

5252
- name: Install Protoc
53-
uses: arduino/setup-protoc@v1
53+
uses: arduino/setup-protoc@v4
5454
with:
55-
version: '3.20.2'
55+
version: '27.4'
5656
repo-token: ${{ secrets.GITHUB_TOKEN }}
5757

5858
- name: Setup Python

0 commit comments

Comments
 (0)