From 2254f6dfb3ca778a5248afd48f6b3465d1884fde Mon Sep 17 00:00:00 2001 From: Prathamesh9284 Date: Sun, 1 Mar 2026 15:37:55 +0000 Subject: [PATCH 1/2] fix: update backend workflow to ensure protobuf-compiler installation works correctly --- .github/workflows/backend.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index d0b0a5e83..11281e281 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -46,7 +46,9 @@ jobs: java-version: 17 distribution: 'temurin' - name: Install Protoc - run: sudo apt install -y protobuf-compiler + run: | + sudo apt-get update + sudo apt-get install -y protobuf-compiler - name: Set up Python uses: actions/setup-python@v5 with: From 69a97b3f9b8a46e5395544219d874cda66279dd2 Mon Sep 17 00:00:00 2001 From: Prathamesh9284 Date: Mon, 2 Mar 2026 04:10:19 +0000 Subject: [PATCH 2/2] fix: update codeql workflow to ensure proper installation of protobuf-compiler --- .github/workflows/codeql.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 87b181cec..a4fd31d26 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -42,7 +42,9 @@ jobs: java-version: 17 distribution: 'temurin' - name: Install Protoc - run: sudo apt install -y protobuf-compiler + run: | + sudo apt-get update + sudo apt-get install -y protobuf-compiler - uses: actions/cache@v4 with: path: ~/.m2/repository