Skip to content

Merge branch 'nightly' into release/nightly/bin/ncproxy/0.13.0 #236

Merge branch 'nightly' into release/nightly/bin/ncproxy/0.13.0

Merge branch 'nightly' into release/nightly/bin/ncproxy/0.13.0 #236

Triggered via push September 8, 2024 08:09
Status Success
Total duration 8m 1s
Artifacts
release_image
6m 4s
release_image
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
match can be simplified with `.unwrap_or_default()`: bin/nanocl/src/config.rs#L49
warning: match can be simplified with `.unwrap_or_default()` --> bin/nanocl/src/config.rs:49:5 | 49 | / match serde_yaml::from_str::<UserConfig>(&s) { 50 | | Ok(config) => config, 51 | | Err(_) => UserConfig::default(), 52 | | } | |_____^ help: replace it with: `serde_yaml::from_str::<UserConfig>(&s).unwrap_or_default()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_unwrap_or_default = note: `#[warn(clippy::manual_unwrap_or_default)]` on by default
release_image
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, docker/setup-buildx-action@v2, actions/cache@v3, docker/login-action@v2. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/