Merge pull request #20 from segersniels/dependabot/github_actions/dot… #62
Annotations
3 errors and 5 warnings
build (aarch64-unknown-linux-musl, aarch64-linux, ubuntu-latest)
This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
|
build (x86_64-unknown-linux-musl, amd64-linux, ubuntu-latest)
This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
|
build (x86_64-apple-darwin, macos, macos-latest)
This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
|
spawned process is never `wait()`ed on:
src/utils/exec.rs#L37
warning: spawned process is never `wait()`ed on
--> src/utils/exec.rs:37:5
|
37 | / Command::new(docker::get_docker_binary_path())
38 | | .args(args)
39 | | .stdin(Stdio::null())
40 | | .stdout(Stdio::null())
41 | | .stderr(Stdio::null())
42 | | .spawn()
43 | | .expect("failed to spawn command");
| | ^- help: try: `.wait()`
| |__________________________________________|
|
|
= note: not doing so might leave behind zombie processes
= note: see https://doc.rust-lang.org/stable/std/process/struct.Child.html#warning
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#zombie_processes
= note: `#[warn(clippy::zombie_processes)]` on by default
|
unneeded `return` statement:
src/utils/command.rs#L166
warning: unneeded `return` statement
--> src/utils/command.rs:166:5
|
166 | return choice;
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
166 - return choice;
166 + choice
|
|
lint
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
build (aarch64-unknown-linux-musl, aarch64-linux, ubuntu-latest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
build (x86_64-unknown-linux-musl, amd64-linux, ubuntu-latest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|