Skip to content

chore: bump subxt and subxt-signer versions #2713

chore: bump subxt and subxt-signer versions

chore: bump subxt and subxt-signer versions #2713

Triggered via pull request August 7, 2024 12:17
Status Failure
Total duration 14m 14s
Artifacts

ci.yml

on: pull_request
Matrix: build-tests
Matrix: template
Matrix: run-integration-test
Matrix: run-tests
Fit to window
Zoom out
Zoom in

Annotations

29 errors and 61 warnings
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L302
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:302:30 | 302 | Value::Int(i128::max_value()), | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 302 | Value::Int(i128::MAX), | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L298
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:298:30 | 298 | Value::Int(i128::min_value()), | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 298 | Value::Int(i128::MIN), | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L293
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:293:29 | 293 | Value::Int(i64::max_value().into()), | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 293 | Value::Int(i64::MAX.into()), | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L289
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:289:29 | 289 | Value::Int(i64::min_value().into()), | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 289 | Value::Int(i64::MIN.into()), | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L285
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:285:66 | 285 | transcode_roundtrip::<i32>("2147483647", Value::Int(i32::max_value().into()))?; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 285 | transcode_roundtrip::<i32>("2147483647", Value::Int(i32::MAX.into()))?; | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L284
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:284:67 | 284 | transcode_roundtrip::<i32>("-2147483648", Value::Int(i32::min_value().into()))?; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 284 | transcode_roundtrip::<i32>("-2147483648", Value::Int(i32::MIN.into()))?; | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L282
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:282:61 | 282 | transcode_roundtrip::<i16>("32767", Value::Int(i16::max_value().into()))?; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 282 | transcode_roundtrip::<i16>("32767", Value::Int(i16::MAX.into()))?; | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L281
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:281:62 | 281 | transcode_roundtrip::<i16>("-32768", Value::Int(i16::min_value().into()))?; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 281 | transcode_roundtrip::<i16>("-32768", Value::Int(i16::MIN.into()))?; | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L279
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:279:57 | 279 | transcode_roundtrip::<i8>("127", Value::Int(i8::max_value().into()))?; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 279 | transcode_roundtrip::<i8>("127", Value::Int(i8::MAX.into()))?; | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L278
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:278:58 | 278 | transcode_roundtrip::<i8>("-128", Value::Int(i8::min_value().into()))?; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants = note: `-D clippy::legacy-numeric-constants` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::legacy_numeric_constants)]` help: use the associated constant instead | 278 | transcode_roundtrip::<i8>("-128", Value::Int(i8::MIN.into()))?; | ~~~
unexpected `cfg` condition value: `__ink_dylint_Constructor`: crates/transcode/src/lib.rs#L539
error: unexpected `cfg` condition value: `__ink_dylint_Constructor` --> crates/transcode/src/lib.rs:539:13 | 539 | pub fn default() -> Self { | ^^^ | = note: expected values for `feature` are: `default` and `std` = help: consider adding `__ink_dylint_Constructor` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
unexpected `cfg` condition value: `__ink_dylint_Constructor`: crates/transcode/src/lib.rs#L534
error: unexpected `cfg` condition value: `__ink_dylint_Constructor` --> crates/transcode/src/lib.rs:534:13 | 534 | pub fn new(init_value: bool) -> Self { | ^^^ | = note: expected values for `feature` are: `default` and `std` = help: consider adding `__ink_dylint_Constructor` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
unexpected `cfg` condition value: `__ink_dylint_Storage`: crates/transcode/src/lib.rs#L520
error: unexpected `cfg` condition value: `__ink_dylint_Storage` --> crates/transcode/src/lib.rs:520:9 | 520 | pub struct Transcode { | ^^^ | = note: expected values for `feature` are: `default` and `std` = help: consider adding `__ink_dylint_Storage` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration = note: `-D unexpected-cfgs` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unexpected_cfgs)]`
clippy
Clippy had exited with the 101 exit code
build-tests (ubuntu-22.04)
Process completed with exit code 101.
build-tests (macos-12)
Process completed with exit code 101.
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L302
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:302:30 | 302 | Value::Int(i128::max_value()), | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 302 | Value::Int(i128::MAX), | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L298
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:298:30 | 298 | Value::Int(i128::min_value()), | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 298 | Value::Int(i128::MIN), | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L293
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:293:29 | 293 | Value::Int(i64::max_value().into()), | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 293 | Value::Int(i64::MAX.into()), | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L289
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:289:29 | 289 | Value::Int(i64::min_value().into()), | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 289 | Value::Int(i64::MIN.into()), | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L285
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:285:66 | 285 | transcode_roundtrip::<i32>("2147483647", Value::Int(i32::max_value().into()))?; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 285 | transcode_roundtrip::<i32>("2147483647", Value::Int(i32::MAX.into()))?; | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L284
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:284:67 | 284 | transcode_roundtrip::<i32>("-2147483648", Value::Int(i32::min_value().into()))?; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 284 | transcode_roundtrip::<i32>("-2147483648", Value::Int(i32::MIN.into()))?; | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L282
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:282:61 | 282 | transcode_roundtrip::<i16>("32767", Value::Int(i16::max_value().into()))?; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 282 | transcode_roundtrip::<i16>("32767", Value::Int(i16::MAX.into()))?; | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L281
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:281:62 | 281 | transcode_roundtrip::<i16>("-32768", Value::Int(i16::min_value().into()))?; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 281 | transcode_roundtrip::<i16>("-32768", Value::Int(i16::MIN.into()))?; | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L279
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:279:57 | 279 | transcode_roundtrip::<i8>("127", Value::Int(i8::max_value().into()))?; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 279 | transcode_roundtrip::<i8>("127", Value::Int(i8::MAX.into()))?; | ~~~
usage of a legacy numeric method: crates/transcode/src/transcoder.rs#L278
error: usage of a legacy numeric method --> crates/transcode/src/transcoder.rs:278:58 | 278 | transcode_roundtrip::<i8>("-128", Value::Int(i8::min_value().into()))?; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants = note: `-D clippy::legacy-numeric-constants` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::legacy_numeric_constants)]` help: use the associated constant instead | 278 | transcode_roundtrip::<i8>("-128", Value::Int(i8::MIN.into()))?; | ~~~
unexpected `cfg` condition value: `__ink_dylint_Constructor`: crates/transcode/src/lib.rs#L539
error: unexpected `cfg` condition value: `__ink_dylint_Constructor` --> crates/transcode/src/lib.rs:539:13 | 539 | pub fn default() -> Self { | ^^^ | = note: expected values for `feature` are: `default` and `std` = help: consider adding `__ink_dylint_Constructor` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
unexpected `cfg` condition value: `__ink_dylint_Constructor`: crates/transcode/src/lib.rs#L534
error: unexpected `cfg` condition value: `__ink_dylint_Constructor` --> crates/transcode/src/lib.rs:534:13 | 534 | pub fn new(init_value: bool) -> Self { | ^^^ | = note: expected values for `feature` are: `default` and `std` = help: consider adding `__ink_dylint_Constructor` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
unexpected `cfg` condition value: `__ink_dylint_Storage`: crates/transcode/src/lib.rs#L520
error: unexpected `cfg` condition value: `__ink_dylint_Storage` --> crates/transcode/src/lib.rs:520:9 | 520 | pub struct Transcode { | ^^^ | = note: expected values for `feature` are: `default` and `std` = help: consider adding `__ink_dylint_Storage` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration = note: `-D unexpected-cfgs` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unexpected_cfgs)]`
template (ubuntu-22.04)
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/
template (ubuntu-22.04)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
template (ubuntu-22.04)
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/
template (ubuntu-22.04)
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/
template (ubuntu-22.04)
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/
template (ubuntu-22.04)
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/
template (ubuntu-22.04)
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/
template (ubuntu-22.04)
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/
template (ubuntu-22.04)
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/
template (ubuntu-22.04)
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/
fmt
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/
fmt
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
fmt
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/
fmt
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/
fmt
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/
fmt
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/
template (macos-12)
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/
template (macos-12)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
template (macos-12)
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/
template (macos-12)
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/
template (macos-12)
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/
template (macos-12)
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/
template (macos-12)
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/
template (macos-12)
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/
template (macos-12)
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/
template (macos-12)
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/
template (windows-2022)
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/
template (windows-2022)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
template (windows-2022)
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/
template (windows-2022)
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/
template (windows-2022)
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/
template (windows-2022)
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/
template (windows-2022)
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/
template (windows-2022)
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/
template (windows-2022)
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/
template (windows-2022)
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
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, scherermichael-oss/[email protected], 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
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions-rs/toolchain@v1, scherermichael-oss/[email protected], actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
clippy
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
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
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
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
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/
check
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/
check
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
check
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/
check
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/
check
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/
check
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-tests (ubuntu-22.04)
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/
build-tests (ubuntu-22.04)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
build-tests (ubuntu-22.04)
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-tests (ubuntu-22.04)
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-tests (ubuntu-22.04)
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-tests (ubuntu-22.04)
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-tests (macos-12)
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/
build-tests (macos-12)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
build-tests (macos-12)
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-tests (macos-12)
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-tests (macos-12)
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-tests (macos-12)
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/