Ptp [will not merge, for gh actions only] #23
Annotations
35 errors and 80 warnings
check (stable, stm32h735)
symbol `DEVICE_PERIPHERALS` is already defined
|
check (stable, stm32h735)
could not compile `stm32h7` (lib) due to previous error
|
check (stable, stm32h735)
The process 'cross' failed with exit code 101
|
check (stable, stm32h7b0)
symbol `DEVICE_PERIPHERALS` is already defined
|
check (stable, stm32h7b0)
could not compile `stm32h7` (lib) due to previous error
|
check (stable, stm32h7b0)
The process 'cross' failed with exit code 101
|
check (stable, stm32h743)
symbol `DEVICE_PERIPHERALS` is already defined
|
check (stable, stm32h743)
could not compile `stm32h7` (lib) due to previous error
|
check (stable, stm32h743)
The process 'cross' failed with exit code 101
|
check (stable, stm32h753)
The operation was canceled.
|
check (1.65.0, stm32h7b0)
The operation was canceled.
|
check (1.65.0, stm32h753)
The operation was canceled.
|
check (stable, stm32h753v)
symbol `DEVICE_PERIPHERALS` is already defined
|
check (stable, stm32h753v)
The operation was canceled.
|
check (1.65.0, stm32h7b3)
The operation was canceled.
|
check (1.65.0, stm32h743v)
The operation was canceled.
|
check (stable, stm32h747cm7)
The operation was canceled.
|
check (1.65.0, stm32h735)
The operation was canceled.
|
check (1.65.0, stm32h747cm7)
The operation was canceled.
|
check (1.65.0, stm32h743)
The operation was canceled.
|
check (stable, stm32h7b3)
The operation was canceled.
|
check (stable, stm32h743v)
The operation was canceled.
|
check (1.65.0, stm32h753v)
The operation was canceled.
|
CI
Process completed with exit code 1.
|
cannot find function `interrupt_handler` in module `ethernet`:
examples/ethernet-nucleo-h743zi2.rs#L221
error[E0425]: cannot find function `interrupt_handler` in module `ethernet`
--> examples/ethernet-nucleo-h743zi2.rs:221:24
|
221 | unsafe { ethernet::interrupt_handler() }
| ^^^^^^^^^^^^^^^^^ help: a function with a similar name exists: `eth_interrupt_handler`
|
::: /home/runner/work/stm32h7xx-hal/stm32h7xx-hal/src/ethernet/eth.rs:572:1
|
572 | pub fn eth_interrupt_handler() -> InterruptReason {
| ------------------------------------------------- similarly named function `eth_interrupt_handler` defined here
|
failed to resolve: use of undeclared type `TxDescriptorRing`:
examples/ethernet-nucleo-h743zi2.rs#L151
error[E0433]: failed to resolve: use of undeclared type `TxDescriptorRing`
--> examples/ethernet-nucleo-h743zi2.rs:151:13
|
151 | TxDescriptorRing::new(unsafe { &mut TX_DESCRIPTORS }, unsafe {
| ^^^^^^^^^^^^^^^^ not found in this scope
|
help: consider importing one of these items
|
16 | use crate::ethernet::TxDescriptorRing;
|
16 | use stm32h7xx_hal::ethernet::TxDescriptorRing;
|
|
failed to resolve: use of undeclared type `RxDescriptorRing`:
examples/ethernet-nucleo-h743zi2.rs#L148
error[E0433]: failed to resolve: use of undeclared type `RxDescriptorRing`
--> examples/ethernet-nucleo-h743zi2.rs:148:13
|
148 | RxDescriptorRing::new(unsafe { &mut RX_DESCRIPTORS }, unsafe {
| ^^^^^^^^^^^^^^^^ not found in this scope
|
help: consider importing one of these items
|
16 | use crate::ethernet::RxDescriptorRing;
|
16 | use stm32h7xx_hal::ethernet::RxDescriptorRing;
|
|
cannot find value `MTU` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L69
error[E0425]: cannot find value `MTU` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:69:12
|
69 | [[0u8; MTU + 2]; NUM_DESCRIPTORS];
| ^^^ not found in this scope
|
help: consider importing one of these items
|
16 | use crate::ethernet::MTU;
|
16 | use stm32h7xx_hal::ethernet::MTU;
|
|
cannot find value `MTU` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L68
error[E0425]: cannot find value `MTU` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:68:30
|
68 | static mut RX_BUFFERS: [[u8; MTU + 2]; NUM_DESCRIPTORS] =
| ^^^ not found in this scope
|
help: consider importing one of these items
|
16 | use crate::ethernet::MTU;
|
16 | use stm32h7xx_hal::ethernet::MTU;
|
|
failed to resolve: use of undeclared type `RxDescriptor`:
examples/ethernet-nucleo-h743zi2.rs#L65
error[E0433]: failed to resolve: use of undeclared type `RxDescriptor`
--> examples/ethernet-nucleo-h743zi2.rs:65:6
|
65 | [RxDescriptor::new(); NUM_DESCRIPTORS];
| ^^^^^^^^^^^^ not found in this scope
|
help: consider importing one of these items
|
16 | use crate::ethernet::RxDescriptor;
|
16 | use stm32h7xx_hal::ethernet::RxDescriptor;
|
|
cannot find type `RxDescriptor` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L64
error[E0412]: cannot find type `RxDescriptor` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:64:29
|
64 | static mut RX_DESCRIPTORS: [RxDescriptor; NUM_DESCRIPTORS] =
| ^^^^^^^^^^^^ not found in this scope
|
help: consider importing one of these items
|
16 | use crate::ethernet::RxDescriptor;
|
16 | use stm32h7xx_hal::ethernet::RxDescriptor;
|
|
cannot find value `MTU` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L61
error[E0425]: cannot find value `MTU` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:61:12
|
61 | [[0u8; MTU + 2]; NUM_DESCRIPTORS];
| ^^^ not found in this scope
|
help: consider importing one of these items
|
16 | use crate::ethernet::MTU;
|
16 | use stm32h7xx_hal::ethernet::MTU;
|
|
cannot find value `MTU` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L60
error[E0425]: cannot find value `MTU` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:60:30
|
60 | static mut TX_BUFFERS: [[u8; MTU + 2]; NUM_DESCRIPTORS] =
| ^^^ not found in this scope
|
help: consider importing one of these items
|
16 | use crate::ethernet::MTU;
|
16 | use stm32h7xx_hal::ethernet::MTU;
|
|
failed to resolve: use of undeclared type `TxDescriptor`:
examples/ethernet-nucleo-h743zi2.rs#L57
error[E0433]: failed to resolve: use of undeclared type `TxDescriptor`
--> examples/ethernet-nucleo-h743zi2.rs:57:6
|
57 | [TxDescriptor::new(); NUM_DESCRIPTORS];
| ^^^^^^^^^^^^ not found in this scope
|
help: consider importing one of these items
|
16 | use crate::ethernet::TxDescriptor;
|
16 | use stm32h7xx_hal::ethernet::TxDescriptor;
|
|
cannot find type `TxDescriptor` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L56
error[E0412]: cannot find type `TxDescriptor` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:56:29
|
56 | static mut TX_DESCRIPTORS: [TxDescriptor; NUM_DESCRIPTORS] =
| ^^^^^^^^^^^^ not found in this scope
|
help: consider importing one of these items
|
16 | use crate::ethernet::TxDescriptor;
|
16 | use stm32h7xx_hal::ethernet::TxDescriptor;
|
|
check (stable, stm32h735)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (stable, stm32h735)
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 (stable, stm32h735)
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 (stable, stm32h735)
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 (stable, stm32h735)
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 (stable, stm32h7b0)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (stable, stm32h7b0)
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 (stable, stm32h7b0)
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 (stable, stm32h7b0)
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 (stable, stm32h7b0)
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 (stable, stm32h743)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (stable, stm32h743)
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 (stable, stm32h743)
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 (stable, stm32h743)
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 (stable, stm32h743)
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 (stable, stm32h753)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (stable, stm32h753)
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 (stable, stm32h753)
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 (stable, stm32h753)
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 (stable, stm32h753)
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 (1.65.0, stm32h7b0)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (1.65.0, stm32h7b0)
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 (1.65.0, stm32h7b0)
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 (1.65.0, stm32h7b0)
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 (1.65.0, stm32h753)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (1.65.0, stm32h7b0)
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 (1.65.0, stm32h753)
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 (1.65.0, stm32h753)
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 (1.65.0, stm32h753)
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 (1.65.0, stm32h753)
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 (stable, stm32h753v)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (stable, stm32h753v)
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 (stable, stm32h753v)
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 (stable, stm32h753v)
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 (stable, stm32h753v)
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 (1.65.0, stm32h7b3)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (1.65.0, stm32h7b3)
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 (1.65.0, stm32h7b3)
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 (1.65.0, stm32h7b3)
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 (1.65.0, stm32h7b3)
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 (1.65.0, stm32h743v)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (1.65.0, stm32h743v)
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 (1.65.0, stm32h743v)
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 (1.65.0, stm32h743v)
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 (1.65.0, stm32h743v)
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 (stable, stm32h747cm7)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (stable, stm32h747cm7)
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 (1.65.0, stm32h735)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (stable, stm32h747cm7)
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 (1.65.0, stm32h735)
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 (stable, stm32h747cm7)
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 (1.65.0, stm32h747cm7)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (1.65.0, stm32h735)
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 (stable, stm32h747cm7)
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 (1.65.0, stm32h735)
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 (1.65.0, stm32h747cm7)
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 (1.65.0, stm32h735)
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 (1.65.0, stm32h747cm7)
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 (1.65.0, stm32h747cm7)
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 (1.65.0, stm32h747cm7)
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 (1.65.0, stm32h743)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (1.65.0, stm32h743)
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 (1.65.0, stm32h743)
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 (1.65.0, stm32h743)
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 (1.65.0, stm32h743)
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 (stable, stm32h7b3)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (stable, stm32h7b3)
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 (stable, stm32h7b3)
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 (stable, stm32h7b3)
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 (stable, stm32h7b3)
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 (stable, stm32h743v)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (stable, stm32h743v)
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 (stable, stm32h743v)
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 (stable, stm32h743v)
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 (stable, stm32h743v)
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 (1.65.0, stm32h753v)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, 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/
|
check (1.65.0, stm32h753v)
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 (1.65.0, stm32h753v)
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 (1.65.0, stm32h753v)
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 (1.65.0, stm32h753v)
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/
|