From: Nutomic Date: Wed, 12 Jul 2023 09:15:28 +0000 (+0200) Subject: Use specific Rust nightly version for CI cargo fmt (fixes #3467) (#3577) X-Git-Url: http://these/git/%24%7Bsubmission.url%7D?a=commitdiff_plain;h=c060546ffa96b61e25d163bc9113d23ed90b7a49;p=lemmy.git Use specific Rust nightly version for CI cargo fmt (fixes #3467) (#3577) * Use specific Rust nightly version for CI cargo fmt (fixes #3467) * fix * fix --- diff --git a/.woodpecker.yml b/.woodpecker.yml index 073bc0a0..4c9bf518 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -36,9 +36,9 @@ pipeline: commands: # need make existing toolchain available - cp ~/.cargo . -r - - rustup toolchain install nightly - - rustup component add rustfmt --toolchain nightly - - cargo +nightly fmt -- --check + - rustup toolchain install nightly-2023-07-10 + - rustup component add rustfmt --toolchain nightly-2023-07-10 + - cargo +nightly-2023-07-10 fmt -- --check # when: # platform: linux/amd64