.github/workflows/workspace.yml #1008
Annotations
4 errors and 52 warnings
build-and-test (beta, macos-12, x86_64-apple-darwin)
The job has exceeded the maximum execution time while awaiting a runner for 24h0m0s
|
build-and-test (stable, macos-12, x86_64-apple-darwin)
The job has exceeded the maximum execution time while awaiting a runner for 24h0m0s
|
build-and-test (nightly, macos-12, x86_64-apple-darwin)
The job has exceeded the maximum execution time while awaiting a runner for 24h0m0s
|
build-and-test (1.75.0, macos-12, x86_64-apple-darwin)
The job has exceeded the maximum execution time while awaiting a runner for 24h0m0s
|
build-and-test (1.75.0, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (1.75.0, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (1.75.0, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (1.75.0, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (nightly, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (nightly, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (nightly, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (nightly, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/io.rs#L179
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/io.rs:179:48
|
179 | return Poll::Ready(Err(std::io::Error::new(
| ________________________________________________^
180 | | std::io::ErrorKind::Other,
181 | | format!(
182 | | "extra bytes read: expected {}; got {}",
183 | | this.expected_size, this.bytes_read
184 | | ),
185 | | )));
| |_________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
179 ~ return Poll::Ready(Err(std::io::Error::other(
180 ~ format!(
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/io.rs#L167
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/io.rs:167:56
|
167 | ... return Poll::Ready(Err(std::io::Error::new(
| ______________________________________________^
168 | | ... std::io::ErrorKind::Other,
169 | | ... format!(
170 | | ... "digest mismatch of retrieved content: expected {}, got {}",
... |
173 | | ... ),
174 | | ... )));
| |_______________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
167 ~ return Poll::Ready(Err(std::io::Error::other(
168 ~ format!(
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L128
warning: variables can be used directly in the `format!` string
--> rpm-repository/src/http.rs:128:31
|
128 | .fetch_repomd(format!("{}/repomd.xml", relative_path))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
128 - .fetch_repomd(format!("{}/repomd.xml", relative_path))
128 + .fetch_repomd(format!("{relative_path}/repomd.xml"))
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L58
warning: variables can be used directly in the `format!` string
--> rpm-repository/src/http.rs:58:73
|
58 | .map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, format!("{:?}", e)))
| ^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
58 - .map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, format!("{:?}", e)))
58 + .map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, format!("{e:?}")))
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L58
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/http.rs:58:26
|
58 | .map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, format!("{:?}", e)))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
58 - .map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, format!("{:?}", e)))
58 + .map_err(|e| std::io::Error::other(format!("{:?}", e)))
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L50
warning: variables can be used directly in the `format!` string
--> rpm-repository/src/http.rs:50:21
|
50 | format!("bad HTTP status code: {:?}", e),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
50 - format!("bad HTTP status code: {:?}", e),
50 + format!("bad HTTP status code: {e:?}"),
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L48
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/http.rs:48:17
|
48 | / std::io::Error::new(
49 | | std::io::ErrorKind::Other,
50 | | format!("bad HTTP status code: {:?}", e),
51 | | ),
| |_________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
48 ~ std::io::Error::other(
49 ~ format!("bad HTTP status code: {:?}", e),
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L42
warning: variables can be used directly in the `format!` string
--> rpm-repository/src/http.rs:42:21
|
42 | format!("HTTP 404 for {}", request_url),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
42 - format!("HTTP 404 for {}", request_url),
42 + format!("HTTP 404 for {request_url}"),
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L31
warning: variables can be used directly in the `format!` string
--> rpm-repository/src/http.rs:31:17
|
31 | format!("error sending HTTP request: {:?}", e),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `#[warn(clippy::uninlined_format_args)]` on by default
help: change this to
|
31 - format!("error sending HTTP request: {:?}", e),
31 + format!("error sending HTTP request: {e:?}"),
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L29
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/http.rs:29:13
|
29 | / std::io::Error::new(
30 | | std::io::ErrorKind::Other,
31 | | format!("error sending HTTP request: {:?}", e),
32 | | ),
| |_____________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
= note: `#[warn(clippy::io_other_error)]` on by default
help: use `std::io::Error::other`
|
29 ~ std::io::Error::other(
30 ~ format!("error sending HTTP request: {:?}", e),
|
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/repository/s3.rs#L167
warning: this can be `std::io::Error::other(_)`
--> debian-packaging/src/repository/s3.rs:167:21
|
167 | std::io::Error::new(std::io::ErrorKind::Other, format!("S3 error: {:?}", e)),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
167 - std::io::Error::new(std::io::ErrorKind::Other, format!("S3 error: {:?}", e)),
167 + std::io::Error::other(format!("S3 error: {:?}", e)),
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/repository/builder.rs#L631
warning: `to_string` applied to a type that implements `Display` in `format!` args
--> debian-packaging/src/repository/builder.rs:631:46
|
631 | .map(|p| Ok(format!("{}\n", p.to_string()))),
| ^^^^^^^^^^^^ help: remove this
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args
= note: `#[warn(clippy::to_string_in_format_args)]` on by default
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/io.rs#L260
warning: this can be `std::io::Error::other(_)`
--> debian-packaging/src/io.rs:260:48
|
260 | return Poll::Ready(Err(std::io::Error::new(
| ________________________________________________^
261 | | std::io::ErrorKind::Other,
262 | | format!(
263 | | "extra bytes read: expected {}; got {}",
264 | | this.expected_size, this.bytes_read
265 | | ),
266 | | )));
| |_________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
260 ~ return Poll::Ready(Err(std::io::Error::other(
261 ~ format!(
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/io.rs#L248
warning: this can be `std::io::Error::other(_)`
--> debian-packaging/src/io.rs:248:56
|
248 | ... return Poll::Ready(Err(std::io::Error::new(
| ______________________________________________^
249 | | ... std::io::ErrorKind::Other,
250 | | ... format!(
251 | | ... "digest mismatch of retrieved content: expected {}, got {}",
... |
254 | | ... ),
255 | | ... )));
| |_______________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
= note: `#[warn(clippy::io_other_error)]` on by default
help: use `std::io::Error::other`
|
248 ~ return Poll::Ready(Err(std::io::Error::other(
249 ~ format!(
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
debian-packaging/src/control.rs#L193
warning: `format!` in `write!` args
--> debian-packaging/src/control.rs:193:9
|
193 | write!(f, "{}", format!("{}: {}\n", self.name, self.value_str()))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: combine the `format!(..)` arguments with the outer `write!(..)` call
= help: or consider changing `format!` to `format_args!`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#format_in_format_args
= note: `#[warn(clippy::format_in_format_args)]` on by default
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/io.rs#L179
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/io.rs:179:48
|
179 | return Poll::Ready(Err(std::io::Error::new(
| ________________________________________________^
180 | | std::io::ErrorKind::Other,
181 | | format!(
182 | | "extra bytes read: expected {}; got {}",
183 | | this.expected_size, this.bytes_read
184 | | ),
185 | | )));
| |_________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
179 ~ return Poll::Ready(Err(std::io::Error::other(
180 ~ format!(
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/io.rs#L167
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/io.rs:167:56
|
167 | ... return Poll::Ready(Err(std::io::Error::new(
| ______________________________________________^
168 | | ... std::io::ErrorKind::Other,
169 | | ... format!(
170 | | ... "digest mismatch of retrieved content: expected {}, got {}",
... |
173 | | ... ),
174 | | ... )));
| |_______________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
167 ~ return Poll::Ready(Err(std::io::Error::other(
168 ~ format!(
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L58
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/http.rs:58:26
|
58 | .map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, format!("{:?}", e)))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
58 - .map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, format!("{:?}", e)))
58 + .map_err(|e| std::io::Error::other(format!("{:?}", e)))
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L48
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/http.rs:48:17
|
48 | / std::io::Error::new(
49 | | std::io::ErrorKind::Other,
50 | | format!("bad HTTP status code: {:?}", e),
51 | | ),
| |_________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
help: use `std::io::Error::other`
|
48 ~ std::io::Error::other(
49 ~ format!("bad HTTP status code: {:?}", e),
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu):
rpm-repository/src/http.rs#L29
warning: this can be `std::io::Error::other(_)`
--> rpm-repository/src/http.rs:29:13
|
29 | / std::io::Error::new(
30 | | std::io::ErrorKind::Other,
31 | | format!("error sending HTTP request: {:?}", e),
32 | | ),
| |_____________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
= note: `#[warn(clippy::io_other_error)]` on by default
help: use `std::io::Error::other`
|
29 ~ std::io::Error::other(
30 ~ format!("error sending HTTP request: {:?}", e),
|
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (1.75.0, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (1.75.0, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (1.75.0, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (1.75.0, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (nightly, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (nightly, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (nightly, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (nightly, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (beta, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (beta, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (beta, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (beta, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (stable, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (stable, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (stable, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build-and-test (stable, windows-2022, x86_64-pc-windows-msvc)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|