CI #830
ci.yaml
on: schedule
Build & Test Project
23s
Spell Check with Typos
6s
Annotations
4 warnings
|
Spell Check with Typos
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Build & Test Project
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, giraffate/clippy-action@v1. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Build & Test Project:
blsforme/src/manager.rs#L74
[clippy] reported by reviewdog 🐶
warning: this creates an owned instance just for comparison
--> blsforme/src/manager.rs:74:34
|
74 | if target == PathBuf::from("/dev/null") {
| ----------^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| help: try: `target == "/dev/null"`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.94.0/index.html#cmp_owned
= note: `#[warn(clippy::cmp_owned)]` on by default
Raw Output:
blsforme/src/manager.rs:74:34:w:warning: this creates an owned instance just for comparison
--> blsforme/src/manager.rs:74:34
|
74 | if target == PathBuf::from("/dev/null") {
| ----------^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| help: try: `target == "/dev/null"`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.94.0/index.html#cmp_owned
= note: `#[warn(clippy::cmp_owned)]` on by default
__END__
|
|
Build & Test Project:
crates/topology/src/disk/probe.rs#L61
[clippy] reported by reviewdog 🐶
warning: this creates an owned instance just for comparison
--> crates/topology/src/disk/probe.rs:61:27
|
61 | .find(|m| PathBuf::from(m.mountpoint) == mountpoint)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^--------------
| |
| help: try: `mountpoint == m.mountpoint`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.94.0/index.html#cmp_owned
= note: `#[warn(clippy::cmp_owned)]` on by default
Raw Output:
crates/topology/src/disk/probe.rs:61:27:w:warning: this creates an owned instance just for comparison
--> crates/topology/src/disk/probe.rs:61:27
|
61 | .find(|m| PathBuf::from(m.mountpoint) == mountpoint)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^--------------
| |
| help: try: `mountpoint == m.mountpoint`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.94.0/index.html#cmp_owned
= note: `#[warn(clippy::cmp_owned)]` on by default
__END__
|