chore(deps): update getsentry/action-release action to v2 #355
Annotations
8 warnings
Check
Cache not found for keys: v0-rust-check-Linux-e99b5096-2352fbe9, v0-rust-check-Linux-e99b5096
|
Clippy
Unexpected input(s) 'token', valid inputs are ['toolchain', 'args', 'use-cross', 'working-directory']
|
unneeded `return` statement:
src/main.rs#L67
warning: unneeded `return` statement
--> src/main.rs:67:5
|
67 | / return match env::var(ENV_SENTRY_DSN) {
68 | | Ok(dns) => Some(sentry::init((
69 | | dns,
70 | | sentry::ClientOptions {
... |
79 | | }
80 | | };
| |_____^
|
= 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`
|
67 ~ match env::var(ENV_SENTRY_DSN) {
68 + Ok(dns) => Some(sentry::init((
69 + dns,
70 + sentry::ClientOptions {
71 + release: sentry::release_name!(),
72 + attach_stacktrace: true,
73 + ..Default::default()
74 + },
75 + ))),
76 + Err(_) => {
77 + info!("{ENV_SENTRY_DSN} not set, skipping Sentry setup");
78 + return None;
79 + }
80 ~ }
|
|
Clippy
Cache not found for keys: v0-rust-clippy-Linux-e99b5096-2352fbe9, v0-rust-clippy-Linux-e99b5096
|
Test Suite (ubuntu-latest, stable)
Cache not found for keys: v0-rust-test-Linux-e99b5096-2352fbe9, v0-rust-test-Linux-e99b5096
|
Coverage
Cache not found for keys: v0-rust-coverage-Linux-313a4d76-2352fbe9, v0-rust-coverage-Linux-313a4d76
|
Test Suite (macos-latest, stable)
Cache not found for keys: v0-rust-test-Darwin-702f1b52-2352fbe9, v0-rust-test-Darwin-702f1b52
|
Test Suite (windows-latest, stable)
Cache not found for keys: v0-rust-test-Windows_NT-fc928af2-2352fbe9, v0-rust-test-Windows_NT-fc928af2
|