From 024f8912f178fda36eef33a829028a509040f8c4 Mon Sep 17 00:00:00 2001 From: stephen Date: Mon, 27 Apr 2026 09:44:32 -0700 Subject: [PATCH] fix: protoc CI --- .github/workflows/cd.yaml | 2 +- .github/workflows/ci.yaml | 12 +++--------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index ec649a743..a4b1adbe2 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -34,7 +34,7 @@ jobs: # Required to compile rig-lancedb - name: Install Protoc - uses: arduino/setup-protoc@v3 + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler - name: Run release-plz uses: MarcoIeni/release-plz-action@v0.5 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 21d8dba8c..c4d76ea87 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -79,9 +79,7 @@ jobs: # Required to compile rig-lancedb - name: Install Protoc - uses: arduino/setup-protoc@v3 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler - name: Run clippy action uses: clechasseur/rs-clippy-check@v3 @@ -107,9 +105,7 @@ jobs: # Required to compile rig-lancedb - name: Install Protoc - uses: arduino/setup-protoc@v3 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler - name: Test with latest nextest release uses: actions-rs/cargo@v1 @@ -138,9 +134,7 @@ jobs: # Required to compile rig-lancedb - name: Install Protoc - uses: arduino/setup-protoc@v3 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler - name: Run cargo doc run: cargo doc --no-deps --all-features