Oopsy on license text #326
rust-buiild.yml
on: push
build
2m 39s
clippy_check
1m 23s
Annotations
5 warnings
useless use of `format!`:
crates/console-host/src/main.rs#L262
warning: useless use of `format!`
--> crates/console-host/src/main.rs:262:32
|
262 | .print(format!("Received disconnect event; Session ending."))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `"Received disconnect event; Session ending.".to_string()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
|
useless use of `format!`:
crates/console-host/src/main.rs#L247
warning: useless use of `format!`
--> crates/console-host/src/main.rs:247:32
|
247 | .print(format!(
| ________________________________^
248 | | "{}",
249 | | match msg.event() {
250 | | moor_values::model::Event::TextNotify(s) => s,
251 | | }
252 | | ))
| |_________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
= note: `#[warn(clippy::useless_format)]` on by default
help: consider using `.to_string()`
|
247 ~ .print((match msg.event() {
248 + moor_values::model::Event::TextNotify(s) => s,
249 ~ }).to_string())
|
|
clippy_check
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
clippy_check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
build
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|