diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 94df171..330d9da 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,9 +14,7 @@ jobs: components: rustfmt, clippy - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 - name: Install Protoc - uses: arduino/setup-protoc@c65c819552d16ad3c9b72d9dfd5ba5237b9c906b # v3.0.0 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} + run: sudo apt-get install -y protobuf-compiler - name: Check code formatting run: cargo fmt --all -- --check - name: Check cargo clippy warnings diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 17aba7b..8bebde3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,9 +10,7 @@ jobs: uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 - name: Install Protoc - uses: arduino/setup-protoc@c65c819552d16ad3c9b72d9dfd5ba5237b9c906b # v3.0.0 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} + run: sudo apt-get install -y protobuf-compiler - name: Run integration tests run: | ./tests/integration-tests.sh