From ee4d087577a68b95183c0386804079256dd491cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A3rebe=20-=20Romain=20GERARD?= Date: Sun, 15 Dec 2024 09:29:40 +0100 Subject: [PATCH] bump rust version to 1.83 --- .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 90e8bbc..0d53311 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,7 +7,7 @@ on: branches: [ "main" ] env: - RUST_VERSION: 1.80.1 + RUST_VERSION: 1.83.0 BIN_NAME: "wstunnel" jobs: diff --git a/Dockerfile b/Dockerfile index 2367a9d..54eed2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG BUILDER_IMAGE=builder_cache ############################################################ # Cache image with all the deps -FROM rust:1.80-bookworm AS builder_cache +FROM rust:1.83-bookworm AS builder_cache RUN rustup component add rustfmt clippy