rust-next #13
rust-next.yml
on: schedule
Matrix: clippy
Matrix: rustfmt
Matrix: Test
Annotations
60 errors and 66 warnings
clippy (stable)
Clippy had exited with the 101 exit code
|
rustfmt (beta)
Process completed with exit code 1.
|
Test (ubuntu-latest, nightly)
Process completed with exit code 101.
|
Test (macos-latest, beta)
Process completed with exit code 101.
|
clippy (1.64.0)
Clippy had exited with the 101 exit code
|
Test (ubuntu-latest, beta)
Process completed with exit code 101.
|
Test (windows-latest, beta)
Process completed with exit code 1.
|
the following explicit lifetimes could be elided: 's:
crates/dictgen/src/trie.rs#L262
error: the following explicit lifetimes could be elided: 's
--> crates/dictgen/src/trie.rs:262:10
|
262 | impl<'s, V> DynChild<'s, V> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
262 - impl<'s, V> DynChild<'s, V> {
262 + impl<V> DynChild<'_, V> {
|
|
manual check for common ascii range:
crates/dictgen/src/trie.rs#L33
error: manual check for common ascii range
--> crates/dictgen/src/trie.rs:33:35
|
33 | } else if (b'A'..=b'Z').contains(&byte) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `byte.is_ascii_uppercase()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_is_ascii_check
|
manual check for common ascii range:
crates/dictgen/src/trie.rs#L31
error: manual check for common ascii range
--> crates/dictgen/src/trie.rs:31:40
|
31 | let index = if (b'a'..=b'z').contains(&byte) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `byte.is_ascii_lowercase()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_is_ascii_check
= note: `-D clippy::manual-is-ascii-check` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::manual_is_ascii_check)]`
|
the following explicit lifetimes could be elided: 's:
crates/dictgen/src/table.rs#L125
error: the following explicit lifetimes could be elided: 's
--> crates/dictgen/src/table.rs:125:6
|
125 | impl<'s> core::fmt::Display for InsensitiveStr<'s> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
125 - impl<'s> core::fmt::Display for InsensitiveStr<'s> {
125 + impl core::fmt::Display for InsensitiveStr<'_> {
|
|
the following explicit lifetimes could be elided: 's:
crates/dictgen/src/table.rs#L118
error: the following explicit lifetimes could be elided: 's
--> crates/dictgen/src/table.rs:118:6
|
118 | impl<'s> core::fmt::Debug for InsensitiveStr<'s> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
118 - impl<'s> core::fmt::Debug for InsensitiveStr<'s> {
118 + impl core::fmt::Debug for InsensitiveStr<'_> {
|
|
the following explicit lifetimes could be elided: 's:
crates/dictgen/src/table.rs#L111
error: the following explicit lifetimes could be elided: 's
--> crates/dictgen/src/table.rs:111:6
|
111 | impl<'s> core::hash::Hash for InsensitiveStr<'s> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
111 - impl<'s> core::hash::Hash for InsensitiveStr<'s> {
111 + impl core::hash::Hash for InsensitiveStr<'_> {
|
|
the following explicit lifetimes could be elided: 's:
crates/dictgen/src/table.rs#L109
error: the following explicit lifetimes could be elided: 's
--> crates/dictgen/src/table.rs:109:6
|
109 | impl<'s> Eq for InsensitiveStr<'s> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
109 - impl<'s> Eq for InsensitiveStr<'s> {}
109 + impl Eq for InsensitiveStr<'_> {}
|
|
the following explicit lifetimes could be elided: 's:
crates/dictgen/src/map.rs#L73
error: the following explicit lifetimes could be elided: 's
--> crates/dictgen/src/map.rs:73:6
|
73 | impl<'s> phf_shared::FmtConst for crate::InsensitiveStr<'s> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
73 - impl<'s> phf_shared::FmtConst for crate::InsensitiveStr<'s> {
73 + impl phf_shared::FmtConst for crate::InsensitiveStr<'_> {
|
|
the following explicit lifetimes could be elided: 's:
crates/dictgen/src/map.rs#L66
error: the following explicit lifetimes could be elided: 's
--> crates/dictgen/src/map.rs:66:6
|
66 | impl<'s> phf_shared::PhfHash for crate::InsensitiveStr<'s> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-D clippy::needless-lifetimes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
66 - impl<'s> phf_shared::PhfHash for crate::InsensitiveStr<'s> {
66 + impl phf_shared::PhfHash for crate::InsensitiveStr<'_> {
|
|
use of deprecated function `winnow::character::digit1`: Replaced with `ascii::digit1`:
crates/varcon-core/src/parser.rs#L387
error: use of deprecated function `winnow::character::digit1`: Replaced with `ascii::digit1`
--> crates/varcon-core/src/parser.rs:387:71
|
387 | let (input, num) = winnow::combinator::opt(winnow::character::digit1).parse_next(input)?;
| ^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L302
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:302:64
|
302 | let sep = (winnow::bytes::tag(":"), winnow::character::space0);
| ^^^^^^
|
use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`:
crates/varcon-core/src/parser.rs#L301
error: use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`
--> crates/varcon-core/src/parser.rs:301:79
|
301 | let types = winnow::multi::separated1(Type::parse, winnow::character::space1);
| ^^^^^^
|
use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`:
crates/varcon-core/src/parser.rs#L186
error: use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`
--> crates/varcon-core/src/parser.rs:186:36
|
186 | winnow::character::space1,
| ^^^^^^
|
use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`:
crates/varcon-core/src/parser.rs#L184
error: use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`
--> crates/varcon-core/src/parser.rs:184:57
|
184 | winnow::combinator::opt((winnow::character::space1, "--")),
| ^^^^^^
|
use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`:
crates/varcon-core/src/parser.rs#L183
error: use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`
--> crates/varcon-core/src/parser.rs:183:57
|
183 | winnow::combinator::opt((winnow::character::space1, "(-)")),
| ^^^^^^
|
use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`:
crates/varcon-core/src/parser.rs#L182
error: use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`
--> crates/varcon-core/src/parser.rs:182:57
|
182 | winnow::combinator::opt((winnow::character::space1, Pos::parse)),
| ^^^^^^
|
use of deprecated function `winnow::character::not_line_ending`: Replaced with `ascii::not_line_ending`:
crates/varcon-core/src/parser.rs#L160
error: use of deprecated function `winnow::character::not_line_ending`: Replaced with `ascii::not_line_ending`
--> crates/varcon-core/src/parser.rs:160:32
|
160 | winnow::character::not_line_ending,
| ^^^^^^^^^^^^^^^
|
use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`:
crates/varcon-core/src/parser.rs#L159
error: use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`
--> crates/varcon-core/src/parser.rs:159:32
|
159 | winnow::character::space1,
| ^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L156
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:156:47
|
156 | let comment_sep = (winnow::character::space0, '#');
| ^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L152
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:152:44
|
152 | let desc_sep = (winnow::character::space0, '|');
| ^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L148
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:148:75
|
148 | let var_sep = (winnow::character::space0, '/', winnow::character::space0);
| ^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L148
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:148:43
|
148 | let var_sep = (winnow::character::space0, '/', winnow::character::space0);
| ^^^^^^
|
use of deprecated function `winnow::multi::many0`: Replaced with `combinator::repeat`:
crates/varcon-core/src/parser.rs#L84
error: use of deprecated function `winnow::multi::many0`: Replaced with `combinator::repeat`
--> crates/varcon-core/src/parser.rs:84:28
|
84 | winnow::multi::many0(note),
| ^^^^^
|
use of deprecated function `winnow::character::line_ending`: Replaced with `ascii::line_ending`:
crates/varcon-core/src/parser.rs#L82
error: use of deprecated function `winnow::character::line_ending`: Replaced with `ascii::line_ending`
--> crates/varcon-core/src/parser.rs:82:36
|
82 | winnow::character::line_ending,
| ^^^^^^^^^^^
|
use of deprecated function `winnow::multi::many1`: Replaced with `combinator::repeat`:
crates/varcon-core/src/parser.rs#L80
error: use of deprecated function `winnow::multi::many1`: Replaced with `combinator::repeat`
--> crates/varcon-core/src/parser.rs:80:28
|
80 | winnow::multi::many1(winnow::sequence::terminated(
| ^^^^^
|
use of deprecated function `winnow::character::line_ending`: Replaced with `ascii::line_ending`:
crates/varcon-core/src/parser.rs#L75
error: use of deprecated function `winnow::character::line_ending`: Replaced with `ascii::line_ending`
--> crates/varcon-core/src/parser.rs:75:36
|
75 | winnow::character::line_ending,
| ^^^^^^^^^^^
|
use of deprecated function `winnow::character::not_line_ending`: Replaced with `ascii::not_line_ending`:
crates/varcon-core/src/parser.rs#L74
error: use of deprecated function `winnow::character::not_line_ending`: Replaced with `ascii::not_line_ending`
--> crates/varcon-core/src/parser.rs:74:36
|
74 | winnow::character::not_line_ending,
| ^^^^^^^^^^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L72
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:72:59
|
72 | (winnow::bytes::tag("##"), winnow::character::space0),
| ^^^^^^
|
use of deprecated function `winnow::character::line_ending`: Replaced with `ascii::line_ending`:
crates/varcon-core/src/parser.rs#L69
error: use of deprecated function `winnow::character::line_ending`: Replaced with `ascii::line_ending`
--> crates/varcon-core/src/parser.rs:69:32
|
69 | winnow::character::line_ending,
| ^^^^^^^^^^^
|
use of deprecated function `winnow::character::not_line_ending`: Replaced with `ascii::not_line_ending`:
crates/varcon-core/src/parser.rs#L68
error: use of deprecated function `winnow::character::not_line_ending`: Replaced with `ascii::not_line_ending`
--> crates/varcon-core/src/parser.rs:68:32
|
68 | winnow::character::not_line_ending,
| ^^^^^^^^^^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L67
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:67:32
|
67 | winnow::character::space0,
| ^^^^^^
|
= note: `-D deprecated` implied by `-D warnings`
|
use of deprecated function `winnow::character::digit1`: Replaced with `ascii::digit1`:
crates/varcon-core/src/parser.rs#L387
error: use of deprecated function `winnow::character::digit1`: Replaced with `ascii::digit1`
--> crates/varcon-core/src/parser.rs:387:71
|
387 | let (input, num) = winnow::combinator::opt(winnow::character::digit1).parse_next(input)?;
| ^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L302
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:302:64
|
302 | let sep = (winnow::bytes::tag(":"), winnow::character::space0);
| ^^^^^^
|
use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`:
crates/varcon-core/src/parser.rs#L301
error: use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`
--> crates/varcon-core/src/parser.rs:301:79
|
301 | let types = winnow::multi::separated1(Type::parse, winnow::character::space1);
| ^^^^^^
|
use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`:
crates/varcon-core/src/parser.rs#L186
error: use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`
--> crates/varcon-core/src/parser.rs:186:36
|
186 | winnow::character::space1,
| ^^^^^^
|
use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`:
crates/varcon-core/src/parser.rs#L184
error: use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`
--> crates/varcon-core/src/parser.rs:184:57
|
184 | winnow::combinator::opt((winnow::character::space1, "--")),
| ^^^^^^
|
use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`:
crates/varcon-core/src/parser.rs#L183
error: use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`
--> crates/varcon-core/src/parser.rs:183:57
|
183 | winnow::combinator::opt((winnow::character::space1, "(-)")),
| ^^^^^^
|
use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`:
crates/varcon-core/src/parser.rs#L182
error: use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`
--> crates/varcon-core/src/parser.rs:182:57
|
182 | winnow::combinator::opt((winnow::character::space1, Pos::parse)),
| ^^^^^^
|
use of deprecated function `winnow::character::not_line_ending`: Replaced with `ascii::not_line_ending`:
crates/varcon-core/src/parser.rs#L160
error: use of deprecated function `winnow::character::not_line_ending`: Replaced with `ascii::not_line_ending`
--> crates/varcon-core/src/parser.rs:160:32
|
160 | winnow::character::not_line_ending,
| ^^^^^^^^^^^^^^^
|
use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`:
crates/varcon-core/src/parser.rs#L159
error: use of deprecated function `winnow::character::space1`: Replaced with `ascii::space1`
--> crates/varcon-core/src/parser.rs:159:32
|
159 | winnow::character::space1,
| ^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L156
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:156:47
|
156 | let comment_sep = (winnow::character::space0, '#');
| ^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L152
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:152:44
|
152 | let desc_sep = (winnow::character::space0, '|');
| ^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L148
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:148:75
|
148 | let var_sep = (winnow::character::space0, '/', winnow::character::space0);
| ^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L148
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:148:43
|
148 | let var_sep = (winnow::character::space0, '/', winnow::character::space0);
| ^^^^^^
|
use of deprecated function `winnow::multi::many0`: Replaced with `combinator::repeat`:
crates/varcon-core/src/parser.rs#L84
error: use of deprecated function `winnow::multi::many0`: Replaced with `combinator::repeat`
--> crates/varcon-core/src/parser.rs:84:28
|
84 | winnow::multi::many0(note),
| ^^^^^
|
use of deprecated function `winnow::character::line_ending`: Replaced with `ascii::line_ending`:
crates/varcon-core/src/parser.rs#L82
error: use of deprecated function `winnow::character::line_ending`: Replaced with `ascii::line_ending`
--> crates/varcon-core/src/parser.rs:82:36
|
82 | winnow::character::line_ending,
| ^^^^^^^^^^^
|
use of deprecated function `winnow::multi::many1`: Replaced with `combinator::repeat`:
crates/varcon-core/src/parser.rs#L80
error: use of deprecated function `winnow::multi::many1`: Replaced with `combinator::repeat`
--> crates/varcon-core/src/parser.rs:80:28
|
80 | winnow::multi::many1(winnow::sequence::terminated(
| ^^^^^
|
use of deprecated function `winnow::character::line_ending`: Replaced with `ascii::line_ending`:
crates/varcon-core/src/parser.rs#L75
error: use of deprecated function `winnow::character::line_ending`: Replaced with `ascii::line_ending`
--> crates/varcon-core/src/parser.rs:75:36
|
75 | winnow::character::line_ending,
| ^^^^^^^^^^^
|
use of deprecated function `winnow::character::not_line_ending`: Replaced with `ascii::not_line_ending`:
crates/varcon-core/src/parser.rs#L74
error: use of deprecated function `winnow::character::not_line_ending`: Replaced with `ascii::not_line_ending`
--> crates/varcon-core/src/parser.rs:74:36
|
74 | winnow::character::not_line_ending,
| ^^^^^^^^^^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L72
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:72:59
|
72 | (winnow::bytes::tag("##"), winnow::character::space0),
| ^^^^^^
|
use of deprecated function `winnow::character::line_ending`: Replaced with `ascii::line_ending`:
crates/varcon-core/src/parser.rs#L69
error: use of deprecated function `winnow::character::line_ending`: Replaced with `ascii::line_ending`
--> crates/varcon-core/src/parser.rs:69:32
|
69 | winnow::character::line_ending,
| ^^^^^^^^^^^
|
use of deprecated function `winnow::character::not_line_ending`: Replaced with `ascii::not_line_ending`:
crates/varcon-core/src/parser.rs#L68
error: use of deprecated function `winnow::character::not_line_ending`: Replaced with `ascii::not_line_ending`
--> crates/varcon-core/src/parser.rs:68:32
|
68 | winnow::character::not_line_ending,
| ^^^^^^^^^^^^^^^
|
use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`:
crates/varcon-core/src/parser.rs#L67
error: use of deprecated function `winnow::character::space0`: Replaced with `ascii::space0`
--> crates/varcon-core/src/parser.rs:67:32
|
67 | winnow::character::space0,
| ^^^^^^
|
= note: `-D deprecated` implied by `-D warnings`
|
clippy (stable)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
clippy (stable)
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. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
clippy (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/
|
clippy (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/
|
clippy (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/
|
clippy (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/
|
rustfmt (beta)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
rustfmt (beta)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
rustfmt (beta)
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/
|
rustfmt (beta)
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/
|
rustfmt (beta)
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/
|
rustfmt (beta)
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/
|
rustfmt (stable)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
rustfmt (stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
rustfmt (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/
|
rustfmt (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/
|
rustfmt (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/
|
rustfmt (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/
|
Test (ubuntu-latest, nightly)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Test (ubuntu-latest, nightly)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Test (ubuntu-latest, nightly)
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/
|
Test (ubuntu-latest, nightly)
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/
|
Test (ubuntu-latest, nightly)
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/
|
Test (ubuntu-latest, nightly)
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/
|
Test (macos-latest, beta)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Test (macos-latest, beta)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Test (macos-latest, beta)
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/
|
Test (macos-latest, beta)
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/
|
Test (macos-latest, beta)
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/
|
Test (macos-latest, beta)
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/
|
clippy (1.64.0)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
clippy (1.64.0)
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. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
clippy (1.64.0)
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/
|
clippy (1.64.0)
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/
|
clippy (1.64.0)
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/
|
clippy (1.64.0)
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/
|
Test (ubuntu-latest, beta)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Test (ubuntu-latest, beta)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Test (ubuntu-latest, beta)
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/
|
Test (ubuntu-latest, beta)
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/
|
Test (ubuntu-latest, beta)
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/
|
Test (ubuntu-latest, beta)
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/
|
Test (macos-latest, stable)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Test (macos-latest, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
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/
|
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/
|
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/
|
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/
|
Test (ubuntu-latest, stable)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Test (ubuntu-latest, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
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/
|
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/
|
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/
|
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/
|
Test (windows-latest, beta)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Test (windows-latest, beta)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Test (windows-latest, beta)
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/
|
Test (windows-latest, beta)
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/
|
Test (windows-latest, beta)
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/
|
Test (windows-latest, beta)
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/
|
Test (windows-latest, stable)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Test (windows-latest, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
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/
|
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/
|
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/
|
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/
|