Skip to content

Commit 1294493

Browse files
committed
Revert 5ea6640
rust-lang/rust#113318 was merged.
1 parent 4afceda commit 1294493

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,9 @@ jobs:
5353
cargo install cargo-license || true
5454
cargo install cargo-modules || true
5555
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
6056
6157
- name: Install Foundry
6258
uses: foundry-rs/foundry-toolchain@v1
63-
# smoelius Pin Foundry version until foundry-rs/foundry#4835 is resolved.
6459
with:
6560
version: nightly-87bc53fc6c874bd4c92d97ed180b949e3a36d78c
6661

necessist/tests/ci.rs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -279,16 +279,9 @@ fn update() {
279279

280280
fn clippy_command(cargo_args: &[&str], rustc_args: &[&str]) -> Command {
281281
// 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
284282
let mut command = Command::new("cargo");
285283
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"])
292285
.args(cargo_args)
293286
.args(["--"])
294287
.args(rustc_args)

0 commit comments

Comments
 (0)