Skip to content

Commit

Permalink
build(deps): upgrade setup-protoc action and protoc version number
Browse files Browse the repository at this point in the history
`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.
  • Loading branch information
Michael-J-Ward committed Sep 18, 2024
1 parent 6c8bf5f commit 74a1f8d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ jobs:
path: .

- name: Install Protoc
uses: arduino/setup-protoc@v1
uses: arduino/setup-protoc@v3
with:
version: "3.20.2"
version: "27.4"
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Build Python package
Expand Down Expand Up @@ -150,9 +150,9 @@ jobs:
path: .

- name: Install Protoc
uses: arduino/setup-protoc@v1
uses: arduino/setup-protoc@v3
with:
version: "3.20.2"
version: "27.4"
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Build Python package
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ jobs:
python-version: "3.11"

- name: Install Protoc
uses: arduino/setup-protoc@v1
uses: arduino/setup-protoc@v3
with:
version: '3.20.2'
version: '27.4'
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ jobs:
override: true

- name: Install Protoc
uses: arduino/setup-protoc@v1
uses: arduino/setup-protoc@v4
with:
version: '3.20.2'
version: '27.4'
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Python
Expand Down

0 comments on commit 74a1f8d

Please sign in to comment.