From: Laurențiu Nicola Date: Mon, 24 Feb 2025 09:58:22 +0000 (+0200) Subject: ci: use stable rust toolchain for rustls and skip installing the docs X-Git-Tag: curl-8_13_0~371 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dfdd380844d073cb74bfada6c8c5446737f0bfc4;p=thirdparty%2Fcurl.git ci: use stable rust toolchain for rustls and skip installing the docs Closes #16447 --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 7c55da9c6e..5fbde6b4fd 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -560,7 +560,7 @@ jobs: cd $HOME curl -sSf --compressed https://sh.rustup.rs/ | sh -s -- -y source $HOME/.cargo/env - rustup toolchain install nightly + rustup toolchain install stable --profile minimal - name: 'build rustls' if: contains(matrix.build.install_steps, 'rustls') && steps.cache-rustls.outputs.cache-hit != 'true'