Skip to content

chore: update deps & fix ci #25

chore: update deps & fix ci

chore: update deps & fix ci #25

Triggered via push September 10, 2023 11:06
Status Success
Total duration 1m 54s
Artifacts

build-test.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
useless use of `vec!`: src/srun.rs#L246
warning: useless use of `vec!` --> src/srun.rs:246:29 | 246 | let check_sum = vec![ | _____________________________^ 247 | | "", 248 | | &self.username, 249 | | &hmd5, ... | 254 | | &param_i, 255 | | ] | |_____________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec = note: `#[warn(clippy::useless_vec)]` on by default help: you can use an array directly | 246 ~ let check_sum = ["", 247 + &self.username, 248 + &hmd5, 249 + &self.acid.to_string(), 250 + &self.ip, 251 + &self.n.to_string(), 252 + &self.utype.to_string(), 253 + &param_i] |
build
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, actions-rs/cargo@v1, 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/