File tree 2 files changed +1
-12
lines changed 2 files changed +1
-12
lines changed Original file line number Diff line number Diff line change 53
53
cargo install cargo-license || true
54
54
cargo install cargo-modules || true
55
55
cargo install cargo-sort || true
56
- # smoelius: Pin Clippy to nightly-2023-06-28 until the following is resolved:
57
- # https://github.com/rust-lang/rust/pull/112628#issuecomment-1616750719
58
- rustup toolchain install nightly-2023-06-28
59
- rustup +nightly-2023-06-28 component add clippy
60
56
61
57
- name : Install Foundry
62
58
uses : foundry-rs/foundry-toolchain@v1
Original file line number Diff line number Diff line change @@ -279,16 +279,9 @@ fn update() {
279
279
280
280
fn clippy_command ( cargo_args : & [ & str ] , rustc_args : & [ & str ] ) -> Command {
281
281
// smoelius: The next command should match what's in scripts/clippy.sh.
282
- // smoelius: Pin Clippy to nightly-2023-06-28 until the following is resolved:
283
- // https://github.com/rust-lang/rust/pull/112628#issuecomment-1616750719
284
282
let mut command = Command :: new ( "cargo" ) ;
285
283
command
286
- . args ( [
287
- "+nightly-2023-06-28" ,
288
- "clippy" ,
289
- "--all-features" ,
290
- "--all-targets" ,
291
- ] )
284
+ . args ( [ "+nightly" , "clippy" , "--all-features" , "--all-targets" ] )
292
285
. args ( cargo_args)
293
286
. args ( [ "--" ] )
294
287
. args ( rustc_args)
You can’t perform that action at this time.
0 commit comments