Some small fixes and updates

- Updated workflows to use new checkout version
  This probably fixes the curl download for hadolint also.
- Updated crates including Rocket to the latest rc3 :party:
- Applied 2 nightly clippy lints to prevent future clippy issues.
This commit is contained in:
BlackDex
2023-03-24 22:07:50 +01:00
parent 5725d297b4
commit 8bcd0ab0c6
8 changed files with 104 additions and 219 deletions

View File

@ -635,7 +635,7 @@ where
if tries >= max_tries {
return err;
}
Handle::current().block_on(async move { sleep(Duration::from_millis(500)).await });
Handle::current().block_on(sleep(Duration::from_millis(500)));
}
}
}