From 1ae5c90d86525a712770810e07fd3899e8e55f1c Mon Sep 17 00:00:00 2001 From: msepga Date: Thu, 21 Dec 2023 15:01:08 -0500 Subject: [PATCH] Bump actions workflow to use protobuf 25.1 --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4760138a..3874e653 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,20 +20,20 @@ jobs: id: cache-protobuf uses: actions/cache@v1 with: - path: protobuf-3.14.0 - key: ${{ runner.os }}-protobuf-cpp-3.14.0 + path: protobuf-25.1 + key: ${{ runner.os }}-protobuf-25.1 - name: Build protobuf library if: matrix.protobuf_lib == 'protobuf-cpp' && steps.cache-protobuf.outputs.cache-hit != 'true' run: | - wget https://github.com/protocolbuffers/protobuf/releases/download/v3.14.0/protobuf-cpp-3.14.0.tar.gz - tar -xf protobuf-cpp-3.14.0.tar.gz - cd protobuf-3.14.0 + wget https://github.com/protocolbuffers/protobuf/releases/download/v25.1/protobuf-25.1.tar.gz + tar -xf protobuf-25.1.tar.gz + cd protobuf-25.1 ./configure make - name: Install protobuf library if: matrix.protobuf_lib == 'protobuf-cpp' run: | - cd protobuf-3.14.0 + cd protobuf-25.1 sudo make install sudo ldconfig - name: Install Valgrind