From ecf04111b6357a8085a4f9e8d2eb6455f1ab7f2a Mon Sep 17 00:00:00 2001 From: Joseph Livesey Date: Thu, 17 Apr 2025 17:12:13 -0400 Subject: [PATCH] build: update Rust version to 1.86 in our ci and docker Signed-off-by: Joseph Livesey --- .github/workflows/release_please.yml | 2 +- .github/workflows/tests.yml | 6 +++--- Dockerfile.tap_aggregator | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release_please.yml b/.github/workflows/release_please.yml index ee861dd8..5c8a155e 100644 --- a/.github/workflows/release_please.yml +++ b/.github/workflows/release_please.yml @@ -39,7 +39,7 @@ jobs: # run only if release-please had released a new version needs: release-please container: - image: rust:1.83-bookworm + image: rust:1.86-bookworm if: needs.release-please.outputs.releases_created == 'true' || github.event.inputs.force_publish == 'true' steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 863a3e47..e8219a84 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.83-bookworm + image: rust:1.86-bookworm steps: - uses: actions/checkout@v3 - name: Install protobuf compiler @@ -51,7 +51,7 @@ jobs: pull-requests: write actions: read container: - image: rust:1.83-bookworm + image: rust:1.86-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.83-bookworm + image: rust:1.86-bookworm steps: - uses: actions/checkout@v3 - name: Install protobuf compiler diff --git a/Dockerfile.tap_aggregator b/Dockerfile.tap_aggregator index d4e1ee7a..6fc360e5 100644 --- a/Dockerfile.tap_aggregator +++ b/Dockerfile.tap_aggregator @@ -1,4 +1,4 @@ -FROM rust:1.83-bookworm as build +FROM rust:1.86-bookworm as build WORKDIR /root