From bb06b414ebb8bc12255f7a0006958b01a2ce68d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A3rebe=20-=20Romain=20GERARD?= Date: Fri, 29 Dec 2023 09:59:45 +0100 Subject: [PATCH] Bump to rust 1.75 --- .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 de3938a..8f2a5ef 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,7 +7,7 @@ on: branches: [ "main" ] env: - RUST_VERSION: 1.74.1 + RUST_VERSION: 1.75.0 BUILD_ARGS: "--release" BIN_NAME: "wstunnel" diff --git a/Dockerfile b/Dockerfile index 3c56871..0e5503e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG BUILDER_IMAGE=builder_cache ############################################################ # Cache image with all the deps -FROM rust:1.74-bookworm AS builder_cache +FROM rust:1.75-bookworm AS builder_cache RUN rustup component add rustfmt clippy