Bump reqwest from 0.12.7 to 0.12.8 (#204) #433
Annotations
11 warnings
unneeded `return` statement:
src/api/repos/test.rs#L6
warning: unneeded `return` statement
--> src/api/repos/test.rs:6:86
|
6 | api_client().unwrap().get(list_organization_repositories("hack-ink")).await.unwrap();
| ^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
help: remove `return`
|
6 | api_client().unwrap().get(list_organization_repositories("hack-ink")).await.unwrap()api_client().unwrap().get(list_organization_repositories("hack-ink")).await.unwrap();
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
unneeded `return` statement:
src/api/issues/test.rs#L6
warning: unneeded `return` statement
--> src/api/issues/test.rs:6:90
|
6 | api_client().unwrap().get(list_repository_issues("hack-ink", "githuber")).await.unwrap();
| ^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
help: remove `return`
|
6 | api_client().unwrap().get(list_repository_issues("hack-ink", "githuber")).await.unwrap()api_client().unwrap().get(list_repository_issues("hack-ink", "githuber")).await.unwrap();
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
unneeded `return` statement:
src/api/commits/test.rs#L41
warning: unneeded `return` statement
--> src/api/commits/test.rs:41:51
|
41 | api_client().unwrap().get(request).await.unwrap();
| ^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
help: remove `return`
|
41 | api_client().unwrap().get(request).await.unwrap()api_client().unwrap().get(request).await.unwrap();
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
unneeded `return` statement:
src/api/commits/test.rs#L29
warning: unneeded `return` statement
--> src/api/commits/test.rs:29:88
|
29 | api_client().unwrap().get(get_a_commit("hack-ink", "githuber", "main")).await.unwrap();
| ^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
help: remove `return`
|
29 | api_client().unwrap().get(get_a_commit("hack-ink", "githuber", "main")).await.unwrap()api_client().unwrap().get(get_a_commit("hack-ink", "githuber", "main")).await.unwrap();
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
unneeded `return` statement:
src/api/commits/test.rs#L24
warning: unneeded `return` statement
--> src/api/commits/test.rs:24:12
|
24 | .unwrap();
| ^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
help: remove `return`
|
24 ~ .unwrap()api_client()
25 ~ .unwrap()
26 ~ .get(list_pull_requests_associated_with_a_commit("hack-ink", "githuber", "main"))
27 ~ .await
28 ~ .unwrap();
|
|
unneeded `return` statement:
src/api/commits/test.rs#L15
warning: unneeded `return` statement
--> src/api/commits/test.rs:15:12
|
15 | .unwrap();
| ^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
help: remove `return`
|
15 ~ .unwrap()api_client()
16 ~ .unwrap()
17 ~ .get(list_branches_for_head_commit("hack-ink", "githuber", "main"))
18 ~ .await
19 ~ .unwrap();
|
|
unneeded `return` statement:
src/api/commits/test.rs#L6
warning: unneeded `return` statement
--> src/api/commits/test.rs:6:80
|
6 | api_client().unwrap().get(list_commits("hack-ink", "githuber")).await.unwrap();
| ^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
6 | api_client().unwrap().get(list_commits("hack-ink", "githuber")).await.unwrap()api_client().unwrap().get(list_commits("hack-ink", "githuber")).await.unwrap();
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
Task cargo clippy
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/
|
Task cargo clippy
The following actions use a deprecated Node.js version and will be forced to run on node20: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Task cargo clippy
Unsupported Cargo.lock format, fallback to caching entire file
|
Task cargo nextest
Unsupported Cargo.lock format, fallback to caching entire file
|