diff --git a/.github/actions/setup-linux-x86_64/action.yml b/.github/actions/setup-linux-x86_64/action.yml index 0c02b7dd..529fd3c1 100644 --- a/.github/actions/setup-linux-x86_64/action.yml +++ b/.github/actions/setup-linux-x86_64/action.yml @@ -6,7 +6,11 @@ runs: steps: - name: Install build essentials - run: sudo apt-get update && sudo apt-get install -y build-essential lld libpq-dev + run: | + sudo apt-get update + sudo apt-get install -y build-essential lld libpq-dev + # Install Protocol Buffers Compiler (protoc) + sudo apt-get install -y protobuf-compiler shell: bash - name: Set up Rust @@ -14,3 +18,4 @@ runs: with: profile: minimal toolchain: 1.70 +