Bump github/codeql-action from 2 to 3 #1312
ci.yaml
on: push
Lints and Docs
2m 13s
Matrix: Build and Test
Annotations
2 errors and 84 warnings
Build and Test (ubuntu-latest, stable, --features tokio,trillium-testing/tokio)
The operation was canceled.
|
Build and Test (windows-latest, stable, --features smol,trillium-testing/smol)
The operation was canceled.
|
use of `default` to create a unit struct:
sse/src/lib.rs#L94
warning: use of `default` to create a unit struct
--> sse/src/lib.rs:94:31
|
94 | event: PhantomData::default(),
| ^^^^^^^^^^^ help: remove this call to `default`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#default_constructed_unit_structs
= note: `#[warn(clippy::default_constructed_unit_structs)]` on by default
|
use of a fallible conversion when an infallible one could be used:
async-std/src/server/unix.rs#L91
warning: use of a fallible conversion when an infallible one could be used
--> async-std/src/server/unix.rs:91:23
|
91 | Self(Unix(tcp.try_into().unwrap()))
| ^^^^^^^^^^^^^^^^^^^ help: use: `into()`
|
= note: converting `UnixListener` to `UnixListener` cannot fail
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
|
use of a fallible conversion when an infallible one could be used:
async-std/src/server/unix.rs#L87
warning: use of a fallible conversion when an infallible one could be used
--> async-std/src/server/unix.rs:87:22
|
87 | Self(Tcp(tcp.try_into().unwrap()))
| ^^^^^^^^^^^^^^^^^^^ help: use: `into()`
|
= note: converting `TcpListener` to `TcpListener` cannot fail
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
= note: `#[warn(clippy::unnecessary_fallible_conversions)]` on by default
|
explicit call to `.into_iter()` in function argument accepting `IntoIterator`:
proxy/src/lib.rs#L209
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> proxy/src/lib.rs:209:29
|
209 | .extend(std::mem::take(client_conn.response_headers_mut()).into_iter());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing the `.into_iter()`: `std::mem::take(client_conn.response_headers_mut())`
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/de686cbc65478db53e3d51c52497685e852cc092/library/core/src/iter/traits/collect.rs:372:18
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
= note: `#[warn(clippy::useless_conversion)]` on by default
|
the borrowed expression implements the required traits:
client/src/conn.rs#L449
warning: the borrowed expression implements the required traits
--> client/src/conn.rs:449:13
|
449 | &mut self.response_body_state,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `self.response_body_state`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
= note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default
|
docs for function which may panic missing `# Panics` section:
trillium/src/conn.rs#L543
warning: docs for function which may panic missing `# Panics` section
--> trillium/src/conn.rs:543:5
|
543 | pub fn into_inner<T: Transport>(self) -> trillium_http::Conn<T> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: first possible panic found here
--> trillium/src/conn.rs:545:14
|
545 | *t.downcast()
| ______________^
546 | | .expect("attempted to downcast to the wrong transport type")
| |____________________________________________________________________________^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_panics_doc
= note: `#[warn(clippy::missing_panics_doc)]` implied by `#[warn(clippy::pedantic)]`
|
item in documentation is missing backticks:
trillium/src/conn.rs#L281
warning: item in documentation is missing backticks
--> trillium/src/conn.rs:281:16
|
281 | Returns a [ReceivedBody] that references this `Conn`. The `Conn`
| ^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
note: the lint level is defined here
--> trillium/src/lib.rs:10:23
|
10 | #![warn(missing_docs, clippy::pedantic, clippy::nursery, clippy::cargo)]
| ^^^^^^^^^^^^^^^^
= note: `#[warn(clippy::doc_markdown)]` implied by `#[warn(clippy::pedantic)]`
help: try
|
281 | Returns a [`ReceivedBody`] that references this `Conn`. The `Conn`
| ~~~~~~~~~~~~~~
|
item in documentation is missing backticks:
http/src/transport/boxed_transport.rs#L54
warning: item in documentation is missing backticks
--> http/src/transport/boxed_transport.rs:54:18
|
54 | Create a new BoxedTransport from some Transport.
| ^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
|
54 | Create a new `BoxedTransport` from some Transport.
| ~~~~~~~~~~~~~~~~
|
matching over `()` is more explicit:
http/src/headers/header_name.rs#L93
warning: matching over `()` is more explicit
--> http/src/headers/header_name.rs:93:21
|
93 | Err(_) => UnknownHeader(UnknownHeaderName(SmartCow::Owned(SmartString::from(s)))),
| ^ help: use `()` instead of `_`: `()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ignored_unit_patterns
|
docs for function which may panic missing `# Panics` section:
http/src/state_set.rs#L75
warning: docs for function which may panic missing `# Panics` section
--> http/src/state_set.rs:75:5
|
75 | / pub fn get_or_insert_with<F, T>(&mut self, default: F) -> &mut T
76 | | where
77 | | F: FnOnce() -> T,
78 | | T: Send + Sync + 'static,
| |_________________________________^
|
note: first possible panic found here
--> http/src/state_set.rs:80:9
|
80 | / self.0
81 | | .entry(TypeId::of::<T>())
82 | | .or_insert_with(|| Box::new(default()))
83 | | .downcast_mut()
84 | | .expect("StateSet maintains the invariant the value associated with a given TypeId is always the type associated with that TypeId.")
| |________________________________________________________________________________________________________________________________________________^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_panics_doc
|
docs for function which may panic missing `# Panics` section:
http/src/state_set.rs#L65
warning: docs for function which may panic missing `# Panics` section
--> http/src/state_set.rs:65:5
|
65 | pub fn get_or_insert<T: Send + Sync + 'static>(&mut self, default: T) -> &mut T {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: first possible panic found here
--> http/src/state_set.rs:66:9
|
66 | / self.0
67 | | .entry(TypeId::of::<T>())
68 | | .or_insert_with(|| Box::new(default))
69 | | .downcast_mut()
70 | | .expect("StateSet maintains the invariant the value associated with a given TypeId is always the type associated with that TypeId.")
| |________________________________________________________________________________________________________________________________________________^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_panics_doc
= note: `#[warn(clippy::missing_panics_doc)]` implied by `#[warn(clippy::pedantic)]`
|
manual `Debug` impl does not include all fields:
http/src/upgrade.rs#L99
warning: manual `Debug` impl does not include all fields
--> http/src/upgrade.rs:99:1
|
99 | / impl<Transport> Debug for Upgrade<Transport> {
100 | | fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
101 | | f.debug_struct(&format!("Upgrade<{}>", std::any::type_name::<Transport>()))
102 | | .field("request_headers", &self.request_headers)
... |
110 | | }
111 | | }
| |_^
|
note: this field is unused
--> http/src/upgrade.rs:32:5
|
32 | pub state: StateSet,
| ^^^^^^^^^^^^^^^^^^^
note: this field is unused
--> http/src/upgrade.rs:35:5
|
35 | pub transport: Transport,
| ^^^^^^^^^^^^^^^^^^^^^^^^
note: this field is unused
--> http/src/upgrade.rs:43:5
|
43 | pub stopper: Stopper,
| ^^^^^^^^^^^^^^^^^^^^
= help: consider including all fields in this `Debug` impl
= help: consider calling `.finish_non_exhaustive()` if you intend to ignore fields
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_fields_in_debug
= note: `#[warn(clippy::missing_fields_in_debug)]` implied by `#[warn(clippy::pedantic)]`
|
matching over `()` is more explicit:
http/src/synthetic.rs#L93
warning: matching over `()` is more explicit
--> http/src/synthetic.rs:93:13
|
93 | fn from(_: ()) -> Self {
| ^ help: use `()` instead of `_`: `()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ignored_unit_patterns
= note: `#[warn(clippy::ignored_unit_patterns)]` implied by `#[warn(clippy::pedantic)]`
|
item in documentation is missing backticks:
http/src/conn.rs#L648
warning: item in documentation is missing backticks
--> http/src/conn.rs:648:22
|
648 | processing in an after_send hook, please open an issue. This hook
| ^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
|
648 | processing in an `after_send` hook, please open an issue. This hook
| ~~~~~~~~~~~~
|
item in documentation is missing backticks:
http/src/conn.rs#L426
warning: item in documentation is missing backticks
--> http/src/conn.rs:426:5
|
426 | ReceivedBody provides an interface to read body content
| ^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
|
426 | `ReceivedBody` provides an interface to read body content
| ~~~~~~~~~~~~~~
|
item in documentation is missing backticks:
http/src/conn.rs#L424
warning: item in documentation is missing backticks
--> http/src/conn.rs:424:16
|
424 | returns a [ReceivedBody] that references this conn. the conn
| ^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
|
424 | returns a [`ReceivedBody`] that references this conn. the conn
| ~~~~~~~~~~~~~~
|
item in documentation is missing backticks:
http/src/conn.rs#L408
warning: item in documentation is missing backticks
--> http/src/conn.rs:408:18
|
408 | returns the [encoding_rs::Encoding] for this response, as
| ^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
|
408 | returns the [`encoding_rs::Encoding`] for this response, as
| ~~~~~~~~~~~~~~~~~~~~~~~
|
item in documentation is missing backticks:
http/src/conn.rs#L392
warning: item in documentation is missing backticks
--> http/src/conn.rs:392:18
|
392 | returns the [encoding_rs::Encoding] for this request, as
| ^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
note: the lint level is defined here
--> http/src/lib.rs:10:23
|
10 | #![warn(missing_docs, clippy::pedantic, clippy::perf, clippy::cargo)]
| ^^^^^^^^^^^^^^^^
= note: `#[warn(clippy::doc_markdown)]` implied by `#[warn(clippy::pedantic)]`
help: try
|
392 | returns the [`encoding_rs::Encoding`] for this request, as
| ~~~~~~~~~~~~~~~~~~~~~~~
|
the borrowed expression implements the required traits:
http/src/conn.rs#L384
warning: the borrowed expression implements the required traits
--> http/src/conn.rs:384:13
|
384 | &mut self.request_body_state,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `self.request_body_state`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
= note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default
|
Lints and Docs
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/clippy-check@v1, aig787/cargo-udeps-action@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Lints and Docs
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/
|
Lints and Docs
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/
|
Lints and Docs
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/
|
Lints and Docs
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 (ubuntu-latest, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build and Test (ubuntu-latest, stable)
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 (ubuntu-latest, stable)
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 (ubuntu-latest, stable)
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 (ubuntu-latest, stable)
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 (ubuntu-latest, stable, --features smol,trillium-testing/smol)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build and Test (ubuntu-latest, stable, --features smol,trillium-testing/smol)
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 (ubuntu-latest, stable, --features smol,trillium-testing/smol)
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 (ubuntu-latest, stable, --features smol,trillium-testing/smol)
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 (ubuntu-latest, stable, --features smol,trillium-testing/smol)
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 (ubuntu-latest, stable, --features async-std,trillium-testing/async-std)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build and Test (ubuntu-latest, stable, --features async-std,trillium-testing/async-std)
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 (ubuntu-latest, stable, --features async-std,trillium-testing/async-std)
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 (ubuntu-latest, stable, --features async-std,trillium-testing/async-std)
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 (ubuntu-latest, stable, --features async-std,trillium-testing/async-std)
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 (macOS-latest, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build and Test (macOS-latest, stable)
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 (macOS-latest, stable)
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 (macOS-latest, stable)
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 (macOS-latest, stable)
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 (macOS-latest, stable, --features async-std,trillium-testing/async-std)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build and Test (macOS-latest, stable, --features async-std,trillium-testing/async-std)
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 (macOS-latest, stable, --features async-std,trillium-testing/async-std)
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 (macOS-latest, stable, --features async-std,trillium-testing/async-std)
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 (macOS-latest, stable, --features async-std,trillium-testing/async-std)
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 (macOS-latest, stable, --features smol,trillium-testing/smol)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build and Test (macOS-latest, stable, --features smol,trillium-testing/smol)
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 (macOS-latest, stable, --features smol,trillium-testing/smol)
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 (macOS-latest, stable, --features smol,trillium-testing/smol)
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 (macOS-latest, stable, --features smol,trillium-testing/smol)
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 (macOS-latest, stable, --features tokio,trillium-testing/tokio)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build and Test (macOS-latest, stable, --features tokio,trillium-testing/tokio)
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 (macOS-latest, stable, --features tokio,trillium-testing/tokio)
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 (macOS-latest, stable, --features tokio,trillium-testing/tokio)
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 (macOS-latest, stable, --features tokio,trillium-testing/tokio)
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 (windows-latest, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build and Test (windows-latest, stable)
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 (windows-latest, stable)
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 (windows-latest, stable)
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 (windows-latest, stable)
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 (windows-latest, stable, --features async-std,trillium-testing/async-std)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build and Test (windows-latest, stable, --features async-std,trillium-testing/async-std)
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 (windows-latest, stable, --features async-std,trillium-testing/async-std)
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 (windows-latest, stable, --features async-std,trillium-testing/async-std)
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 (windows-latest, stable, --features async-std,trillium-testing/async-std)
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 (windows-latest, stable, --features tokio,trillium-testing/tokio)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build and Test (windows-latest, stable, --features tokio,trillium-testing/tokio)
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 (windows-latest, stable, --features tokio,trillium-testing/tokio)
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 (windows-latest, stable, --features tokio,trillium-testing/tokio)
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 (windows-latest, stable, --features tokio,trillium-testing/tokio)
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 (ubuntu-latest, stable, --features tokio,trillium-testing/tokio)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build and Test (ubuntu-latest, stable, --features tokio,trillium-testing/tokio)
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 (ubuntu-latest, stable, --features tokio,trillium-testing/tokio)
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 (ubuntu-latest, stable, --features tokio,trillium-testing/tokio)
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 (ubuntu-latest, stable, --features tokio,trillium-testing/tokio)
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 (windows-latest, stable, --features smol,trillium-testing/smol)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build and Test (windows-latest, stable, --features smol,trillium-testing/smol)
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 (windows-latest, stable, --features smol,trillium-testing/smol)
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 (windows-latest, stable, --features smol,trillium-testing/smol)
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 (windows-latest, stable, --features smol,trillium-testing/smol)
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/
|