Skip to content

Update actions/checkout action to v5.0.1

a114208
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Update actions/checkout action to v5.0.1 #28

Update actions/checkout action to v5.0.1
a114208
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Nov 18, 2025 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.91.1 (ed61e7d7e 2025-11-07)
  • cargo 1.91.1 (ea2d97820 2025-10-10)
  • clippy 0.1.91 (ed61e7d7e2 2025-11-07)

Annotations

Check warning on line 21 in src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this creates an owned instance just for comparison

warning: this creates an owned instance just for comparison
  --> src/main.rs:21:20
   |
21 |     if cli.path == PathBuf::from("-") {
   |        ------------^^^^^^^^^^^^^^^^^^
   |        |
   |        help: try: `cli.path == "-"`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#cmp_owned
   = note: `#[warn(clippy::cmp_owned)]` on by default