From 98ac3470cec8fdf42b46eb30933d932016d2a8d3 Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Tue, 20 Oct 2020 09:39:42 +0200 Subject: [PATCH] GitHub Actions: use protobuf-compiler for Java --- .github/workflows/java.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index 600b41a..fd060d1 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -8,13 +8,10 @@ jobs: steps: - uses: actions/checkout@v2 + - run: sudo apt-get install protobuf-compiler - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - - name: Install Protoc - uses: arduino/setup-protoc@v1 - with: - version: '3.x' - name: Build with Maven run: mvn -B package --file pom.xml