From b2ed2e961c827d6427ae40f94ac172f3cd903721 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Thu, 5 Oct 2023 18:24:21 -0400 Subject: [PATCH] Correct rust version used in CI/orchestration --- .github/actions/build-dependencies/action.yml | 2 +- .github/workflows/daily-deny.yml | 2 +- .github/workflows/lint.yml | 2 +- orchestration/coordinator/Dockerfile | 2 +- orchestration/message-queue/Dockerfile | 2 +- orchestration/processor/Dockerfile | 2 +- orchestration/runtime/Dockerfile | 2 +- orchestration/serai/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/actions/build-dependencies/action.yml b/.github/actions/build-dependencies/action.yml index 32e7b332..66c1e879 100644 --- a/.github/actions/build-dependencies/action.yml +++ b/.github/actions/build-dependencies/action.yml @@ -10,7 +10,7 @@ inputs: rust-toolchain: description: "Rust toolchain to install" required: false - default: 1.72.1 + default: 1.73.0 rust-components: description: "Rust components to install" diff --git a/.github/workflows/daily-deny.yml b/.github/workflows/daily-deny.yml index a15c6c7e..1d102199 100644 --- a/.github/workflows/daily-deny.yml +++ b/.github/workflows/daily-deny.yml @@ -20,7 +20,7 @@ jobs: - name: Install cargo uses: dtolnay/rust-toolchain@5cb429dd810e16ff67df78472fa81cf760f4d1c0 with: - toolchain: 1.72.1 + toolchain: 1.73.0 - name: Install cargo deny run: cargo install --locked cargo-deny diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9646cbb5..673a8d94 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -41,7 +41,7 @@ jobs: - name: Install cargo uses: dtolnay/rust-toolchain@5cb429dd810e16ff67df78472fa81cf760f4d1c0 with: - toolchain: 1.72.1 + toolchain: 1.73.0 - name: Install cargo deny run: cargo install --locked cargo-deny diff --git a/orchestration/coordinator/Dockerfile b/orchestration/coordinator/Dockerfile index 92dc1115..01c7513a 100644 --- a/orchestration/coordinator/Dockerfile +++ b/orchestration/coordinator/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.71-slim-bookworm as builder +FROM rust:1.73-slim-bookworm as builder LABEL description="STAGE 1: Build" # Upgrade and add dev dependencies diff --git a/orchestration/message-queue/Dockerfile b/orchestration/message-queue/Dockerfile index 1571f4a3..1250ef4b 100644 --- a/orchestration/message-queue/Dockerfile +++ b/orchestration/message-queue/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.71-slim-bookworm as builder +FROM rust:1.73-slim-bookworm as builder LABEL description="STAGE 1: Build" # Upgrade and add dev dependencies diff --git a/orchestration/processor/Dockerfile b/orchestration/processor/Dockerfile index a6c2a266..83e47400 100644 --- a/orchestration/processor/Dockerfile +++ b/orchestration/processor/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.71-slim-bookworm as builder +FROM rust:1.73-slim-bookworm as builder LABEL description="STAGE 1: Build" # Upgrade and add dev dependencies diff --git a/orchestration/runtime/Dockerfile b/orchestration/runtime/Dockerfile index b8b13ac6..144c8cac 100644 --- a/orchestration/runtime/Dockerfile +++ b/orchestration/runtime/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.71.1-slim-bookworm as builder +FROM rust:1.73.0-slim-bookworm as builder # Move to a Debian package snapshot RUN rm -rf /etc/apt/sources.list.d/debian.sources && \ diff --git a/orchestration/serai/Dockerfile b/orchestration/serai/Dockerfile index 21d0f8a4..507421fb 100644 --- a/orchestration/serai/Dockerfile +++ b/orchestration/serai/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.71-slim-bookworm as builder +FROM rust:1.73-slim-bookworm as builder LABEL description="STAGE 1: Build" # Upgrade and add dev dependencies