From 32bba786868f4d1b98c3d06e597f008defa23838 Mon Sep 17 00:00:00 2001 From: Cody Kickertz Date: Wed, 18 Mar 2026 21:12:31 +0000 Subject: [PATCH 1/2] fix(ci): install protobuf-compiler for kerykeion prost codegen --- .github/workflows/rust.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f4c8365..0907815 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -40,6 +40,8 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + - name: Install protoc + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler - name: Check \${{ matrix.name }} run: cargo check \${{ matrix.args }} @@ -50,6 +52,8 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - uses: dtolnay/rust-toolchain@ff9b7e97f1c15b93257ad9a20e43c84dc3eef47b # 1.85 - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + - name: Install protoc + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler - name: Check MSRV run: cargo check --workspace @@ -62,6 +66,8 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + - name: Install protoc + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler - name: Build docs run: cargo doc --workspace --no-deps @@ -72,6 +78,8 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable - uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2 + - name: Install protoc + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler - name: Build binary run: cargo build --release -p akroasis - name: Verify binary runs From e20de26d0ed504790736e39dc97bb65c6bbbd3ed Mon Sep 17 00:00:00 2001 From: Cody Kickertz Date: Wed, 18 Mar 2026 21:40:52 +0000 Subject: [PATCH 2/2] fix(ci): exclude research/ from PII scan --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7db25d9..674a876 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,6 +46,7 @@ jobs: . | grep -v 'pii-patterns' | \ grep -v 'target/' | \ grep -v '^./docs/' | \ + grep -v '^./research/' | \ grep -v '^./standards/' | \ grep -v 'node_modules/' || true) if [ -n "$HITS" ]; then