From 568dcb49d3aa36c0d8908336d0943c69ed6cc5c3 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Fri, 18 Oct 2024 11:56:46 +0200 Subject: [PATCH] ci: remove protoc installation in GitHub workflow The GitHub workflow calls `make test`, which runs the protoc installation and (re)generation of files inside a container. There is no need to install protoc in the workflow anymore. Signed-off-by: Niels de Vos --- .github/workflows/test-golang.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/test-golang.yaml b/.github/workflows/test-golang.yaml index 011b51562..122f8712a 100644 --- a/.github/workflows/test-golang.yaml +++ b/.github/workflows/test-golang.yaml @@ -20,12 +20,6 @@ jobs: with: go-version-file: go.mod - - name: Install Protoc - # action @v1.3.0 can install protoc 3.19, @v2 installs protoc v21.0+ - uses: arduino/setup-protoc@v1.3.0 - with: - version: "3.20.2" - - name: Run "make test" run: make test