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