From 69dee763110f7a85c9c5921a906bb4ed429207e0 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Tue, 8 Aug 2023 13:44:09 +0200 Subject: [PATCH] ci: use arduino/setup-protoc@v1.3.0 to install older version of protoc arduino/setup-protoc@v2 installs versions of protoc with the new versioning scheme, starting with protoc v21.0. See-also: arduino/setup-protoc#85 Signed-off-by: Niels de Vos --- .github/workflows/test-golang.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-golang.yaml b/.github/workflows/test-golang.yaml index 33daed03a..f91c320c4 100644 --- a/.github/workflows/test-golang.yaml +++ b/.github/workflows/test-golang.yaml @@ -21,9 +21,10 @@ jobs: go-version: "1.20" - name: Install Protoc - uses: arduino/setup-protoc@v2 + # action @v1.3.0 can install protoc 3.19, @v2 installs protoc v21.0+ + uses: arduino/setup-protoc@v1.3.0 with: - version: '3.19.6' + version: "3.19.6" - name: Run "make test" run: make test