From e7c8bbf04010e1b12af00dc2dedd6e240462a12c Mon Sep 17 00:00:00 2001 From: Natanael Mojica Date: Tue, 2 Sep 2025 09:12:24 -0600 Subject: [PATCH 1/2] ci: upgrade rust to 1.87 in workflow Signed-off-by: Natanael Mojica --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 31dfef7..886fad7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,7 +25,7 @@ jobs: name: cargo clippy runs-on: ubuntu-latest container: - image: rust:1.86-bookworm + image: rust:1.87-bookworm steps: - uses: actions/checkout@v3 - name: Install protobuf compiler @@ -51,7 +51,7 @@ jobs: pull-requests: write actions: read container: - image: rust:1.86-bookworm + image: rust:1.87-bookworm steps: - uses: actions/checkout@v3 - name: Install protobuf compiler @@ -78,7 +78,7 @@ jobs: name: cargo test docs runs-on: ubuntu-latest container: - image: rust:1.86-bookworm + image: rust:1.87-bookworm steps: - uses: actions/checkout@v3 - name: Install protobuf compiler From dc9aea9cd3d566ec56765d75111197091c02b7a8 Mon Sep 17 00:00:00 2001 From: Natanael Mojica Date: Tue, 2 Sep 2025 09:17:41 -0600 Subject: [PATCH 2/2] fix: Bump rust version in tap-aggregator container Signed-off-by: Natanael Mojica --- Dockerfile.tap_aggregator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.tap_aggregator b/Dockerfile.tap_aggregator index 6fc360e..5507c75 100644 --- a/Dockerfile.tap_aggregator +++ b/Dockerfile.tap_aggregator @@ -1,4 +1,4 @@ -FROM rust:1.86-bookworm as build +FROM rust:1.87-bookworm as build WORKDIR /root