Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump taiki-e/install-action from 2.33.26 to 2.33.34 #3380

Merged

build(deps): bump taiki-e/install-action from 2.33.26 to 2.33.34

efbc295
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

build(deps): bump taiki-e/install-action from 2.33.26 to 2.33.34 #3380

build(deps): bump taiki-e/install-action from 2.33.26 to 2.33.34
efbc295
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded May 27, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (1)

awc/src/client/connector.rs|1083 col 68| error: initializer for thread_local value can be made const
--> awc/src/client/connector.rs:1083:68
|
1083 | 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)]