update delete-tag-and-release action #21
GitHub Actions / clippy
succeeded
Mar 29, 2024 in 0s
clippy
2 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 2 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.79.0-nightly (c9f8f3438 2024-03-27)
- cargo 1.79.0-nightly (499a61ce7 2024-03-26)
- clippy 0.1.79 (c9f8f34 2024-03-27)
Annotations
Check warning on line 8 in src/wireguard.rs
github-actions / clippy
the borrowed expression implements the required traits
warning: the borrowed expression implements the required traits
--> src/wireguard.rs:8:19
|
8 | .args(&["show", "all", "dump"])
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `["show", "all", "dump"]`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
= note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default
Check warning on line 7 in build.rs
github-actions / clippy
the borrowed expression implements the required traits
warning: the borrowed expression implements the required traits
--> build.rs:7:15
|
7 | .args(&["rev-parse", "HEAD"])
| ^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `["rev-parse", "HEAD"]`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
= note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default
Loading