Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

basic search test

basic search test #505

Triggered via push October 17, 2023 06:29
Status Success
Total duration 21s
Artifacts

security.yml

on: push
security_audit
10s
security_audit
Fit to window
Zoom out
Zoom in

Annotations

5 warnings
security_audit
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/audit-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/
security_audit
1 warnings found!
security_audit
Unknown warning kind unsound found, please, file a bug
useless conversion to the same type: `database::models::ids::UserId`: src/routes/v2/teams.rs#L958
warning: useless conversion to the same type: `database::models::ids::UserId` --> src/routes/v2/teams.rs:958:37 | 958 | User::clear_project_cache(&[delete_member.user_id.into()], &redis).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `delete_member.user_id` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion = note: `#[warn(clippy::useless_conversion)]` on by default
this `.into_iter()` call is equivalent to `.iter()` and will not consume the `slice`: src/database/models/user_item.rs#L383
warning: this `.into_iter()` call is equivalent to `.iter()` and will not consume the `slice` --> src/database/models/user_item.rs:383:22 | 383 | .into_iter() | ^^^^^^^^^ help: call directly: `iter` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref = note: `#[warn(clippy::into_iter_on_ref)]` on by default