Skip to content

build(deps): bump taiki-e/install-action from 2.32.17 to 2.33.3 #3128

build(deps): bump taiki-e/install-action from 2.32.17 to 2.33.3

build(deps): bump taiki-e/install-action from 2.32.17 to 2.33.3 #3128

GitHub Actions / clippy succeeded Apr 22, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (1)

awc/src/client/connector.rs|977 col 68| error: initializer for thread_local value can be made const
--> awc/src/client/connector.rs:977:68
|
977 | static TRUST_DNS_RESOLVER: RefCell<Option> = RefCell::new(None);
| ^^^^^^^^^^^^^^^^^^ help: replace with: const { RefCell::new(None) }
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#thread_local_initializer_can_be_made_const
= note: -D clippy::thread-local-initializer-can-be-made-const implied by -D warnings
= help: to override -D warnings add #[allow(clippy::thread_local_initializer_can_be_made_const)]