From c766b8955389871ad954b7dc725daca202c49642 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A3rebe=20-=20Romain=20GERARD?= Date: Tue, 19 Dec 2023 23:08:05 +0100 Subject: [PATCH] Bump to Rust 1.74.1 --- .github/workflows/release.yaml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 22a54b3..d9f77bf 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,7 +7,7 @@ on: branches: [ "main" ] env: - RUST_VERSION: 1.73.0 + RUST_VERSION: 1.74.1 BUILD_ARGS: "--release" BIN_NAME: "wstunnel" diff --git a/Dockerfile b/Dockerfile index 71ad97d..3c56871 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG BUILDER_IMAGE=builder_cache ############################################################ # Cache image with all the deps -FROM rust:1.73-bookworm AS builder_cache +FROM rust:1.74-bookworm AS builder_cache RUN rustup component add rustfmt clippy