From 600fd6baeeb1ecfa628f7cada5403bcf1f79198d Mon Sep 17 00:00:00 2001 From: ShivajiKharse <115525374+shivaji-dgraph@users.noreply.github.com> Date: Wed, 11 Sep 2024 12:23:05 +0530 Subject: [PATCH] fix(ci): fix protobuf compiler installation error in dgraph test workflow (#2107) --- .github/workflows/ci-dgraph-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-dgraph-tests.yml b/.github/workflows/ci-dgraph-tests.yml index 3960a5069..2d6f71382 100644 --- a/.github/workflows/ci-dgraph-tests.yml +++ b/.github/workflows/ci-dgraph-tests.yml @@ -35,7 +35,7 @@ jobs: with: node-version: 16 - name: Install protobuf-compiler - run: sudo apt-get install -y protobuf-compiler + run: sudo apt update && sudo apt install -y protobuf-compiler - name: Check protobuf run: | cd ./protos