Ptp [will not merge, for gh actions only] #22
Annotations
53 errors and 81 warnings
check (stable, stm32h7b3)
symbol `DEVICE_PERIPHERALS` is already defined
|
check (stable, stm32h7b3)
could not compile `stm32h7` (lib) due to previous error
|
check (stable, stm32h7b3)
The process 'cross' failed with exit code 101
|
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 (1.65.0, stm32h7b3)
The operation was canceled.
|
check (stable, stm32h747cm7)
symbol `DEVICE_PERIPHERALS` is already defined
|
check (stable, stm32h747cm7)
could not compile `stm32h7` (lib) due to previous error
|
check (stable, stm32h747cm7)
The process 'cross' failed with exit code 101
|
check (1.65.0, stm32h743)
The operation was canceled.
|
check (stable, stm32h743v):
examples/ethernet-nucleo-h743zi2.rs#L54
cannot find type `TxDescriptor` in this scope
|
check (stable, stm32h743v):
examples/ethernet-nucleo-h743zi2.rs#L54
cannot find value `NUM_DESCRIPTORS` in this scope
|
check (stable, stm32h743v):
examples/ethernet-nucleo-h743zi2.rs#L55
failed to resolve: use of undeclared type `TxDescriptor`
|
check (stable, stm32h743v):
examples/ethernet-nucleo-h743zi2.rs#L55
cannot find value `NUM_DESCRIPTORS` in this scope
|
check (stable, stm32h743v):
examples/ethernet-nucleo-h743zi2.rs#L58
cannot find value `MTU` in this scope
|
check (stable, stm32h743v):
examples/ethernet-nucleo-h743zi2.rs#L58
cannot find value `NUM_DESCRIPTORS` in this scope
|
check (stable, stm32h743v):
examples/ethernet-nucleo-h743zi2.rs#L59
cannot find value `MTU` in this scope
|
check (stable, stm32h743v):
examples/ethernet-nucleo-h743zi2.rs#L59
cannot find value `NUM_DESCRIPTORS` in this scope
|
check (stable, stm32h743v):
examples/ethernet-nucleo-h743zi2.rs#L62
cannot find type `RxDescriptor` in this scope
|
check (stable, stm32h743v):
examples/ethernet-nucleo-h743zi2.rs#L62
cannot find value `NUM_DESCRIPTORS` in this scope
|
check (1.65.0, stm32h743v)
The operation was canceled.
|
check (1.65.0, stm32h735)
The operation was canceled.
|
check (stable, stm32h753v)
The operation was canceled.
|
check (1.65.0, stm32h753)
The operation was canceled.
|
check (1.65.0, stm32h7b0)
The operation was canceled.
|
check (1.65.0, stm32h747cm7)
The operation was canceled.
|
check (1.65.0, stm32h753v)
The operation was canceled.
|
check (stable, stm32h743)
The operation was canceled.
|
check (stable, stm32h753)
The operation was canceled.
|
CI
Process completed with exit code 1.
|
cannot find function `interrupt_handler` in module `ethernet`:
examples/ethernet-nucleo-h743zi2.rs#L219
error[E0425]: cannot find function `interrupt_handler` in module `ethernet`
--> examples/ethernet-nucleo-h743zi2.rs:219:24
|
219 | 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#L149
error[E0433]: failed to resolve: use of undeclared type `TxDescriptorRing`
--> examples/ethernet-nucleo-h743zi2.rs:149:13
|
149 | 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#L146
error[E0433]: failed to resolve: use of undeclared type `RxDescriptorRing`
--> examples/ethernet-nucleo-h743zi2.rs:146:13
|
146 | 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 `NUM_DESCRIPTORS` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L67
error[E0425]: cannot find value `NUM_DESCRIPTORS` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:67:22
|
62 | / static mut RX_DESCRIPTORS: [RxDescriptor; NUM_DESCRIPTORS] =
63 | | [RxDescriptor::new(); NUM_DESCRIPTORS];
| |___________________________________________- similarly named static `RX_DESCRIPTORS` defined here
...
67 | [[0u8; MTU + 2]; NUM_DESCRIPTORS];
| ^^^^^^^^^^^^^^^ help: a static with a similar name exists: `RX_DESCRIPTORS`
|
cannot find value `MTU` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L67
error[E0425]: cannot find value `MTU` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:67:12
|
67 | [[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 `NUM_DESCRIPTORS` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L66
error[E0425]: cannot find value `NUM_DESCRIPTORS` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:66:40
|
62 | / static mut RX_DESCRIPTORS: [RxDescriptor; NUM_DESCRIPTORS] =
63 | | [RxDescriptor::new(); NUM_DESCRIPTORS];
| |___________________________________________- similarly named static `RX_DESCRIPTORS` defined here
...
66 | static mut RX_BUFFERS: [[u8; MTU + 2]; NUM_DESCRIPTORS] =
| ^^^^^^^^^^^^^^^ help: a static with a similar name exists: `RX_DESCRIPTORS`
|
cannot find value `MTU` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L66
error[E0425]: cannot find value `MTU` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:66:30
|
66 | 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;
|
|
cannot find value `NUM_DESCRIPTORS` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L63
error[E0425]: cannot find value `NUM_DESCRIPTORS` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:63:27
|
63 | [RxDescriptor::new(); NUM_DESCRIPTORS];
| ^^^^^^^^^^^^^^^ not found in this scope
|
failed to resolve: use of undeclared type `RxDescriptor`:
examples/ethernet-nucleo-h743zi2.rs#L63
error[E0433]: failed to resolve: use of undeclared type `RxDescriptor`
--> examples/ethernet-nucleo-h743zi2.rs:63:6
|
63 | [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 value `NUM_DESCRIPTORS` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L62
error[E0425]: cannot find value `NUM_DESCRIPTORS` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:62:43
|
62 | static mut RX_DESCRIPTORS: [RxDescriptor; NUM_DESCRIPTORS] =
| ^^^^^^^^^^^^^^^ not found in this scope
|
cannot find type `RxDescriptor` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L62
error[E0412]: cannot find type `RxDescriptor` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:62:29
|
62 | 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 `NUM_DESCRIPTORS` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L59
error[E0425]: cannot find value `NUM_DESCRIPTORS` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:59:22
|
59 | [[0u8; MTU + 2]; NUM_DESCRIPTORS];
| ^^^^^^^^^^^^^^^ help: a static with a similar name exists: `RX_DESCRIPTORS`
...
62 | / static mut RX_DESCRIPTORS: [RxDescriptor; NUM_DESCRIPTORS] =
63 | | [RxDescriptor::new(); NUM_DESCRIPTORS];
| |___________________________________________- similarly named static `RX_DESCRIPTORS` defined here
|
cannot find value `MTU` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L59
error[E0425]: cannot find value `MTU` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:59:12
|
59 | [[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 `NUM_DESCRIPTORS` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L58
error[E0425]: cannot find value `NUM_DESCRIPTORS` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:58:40
|
58 | static mut TX_BUFFERS: [[u8; MTU + 2]; NUM_DESCRIPTORS] =
| ^^^^^^^^^^^^^^^ help: a static with a similar name exists: `RX_DESCRIPTORS`
...
62 | / static mut RX_DESCRIPTORS: [RxDescriptor; NUM_DESCRIPTORS] =
63 | | [RxDescriptor::new(); NUM_DESCRIPTORS];
| |___________________________________________- similarly named static `RX_DESCRIPTORS` defined here
|
cannot find value `MTU` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L58
error[E0425]: cannot find value `MTU` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:58:30
|
58 | 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;
|
|
cannot find value `NUM_DESCRIPTORS` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L55
error[E0425]: cannot find value `NUM_DESCRIPTORS` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:55:27
|
55 | [TxDescriptor::new(); NUM_DESCRIPTORS];
| ^^^^^^^^^^^^^^^ help: a static with a similar name exists: `RX_DESCRIPTORS`
...
62 | / static mut RX_DESCRIPTORS: [RxDescriptor; NUM_DESCRIPTORS] =
63 | | [RxDescriptor::new(); NUM_DESCRIPTORS];
| |___________________________________________- similarly named static `RX_DESCRIPTORS` defined here
|
failed to resolve: use of undeclared type `TxDescriptor`:
examples/ethernet-nucleo-h743zi2.rs#L55
error[E0433]: failed to resolve: use of undeclared type `TxDescriptor`
--> examples/ethernet-nucleo-h743zi2.rs:55:6
|
55 | [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 value `NUM_DESCRIPTORS` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L54
error[E0425]: cannot find value `NUM_DESCRIPTORS` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:54:43
|
54 | static mut TX_DESCRIPTORS: [TxDescriptor; NUM_DESCRIPTORS] =
| ^^^^^^^^^^^^^^^ help: a static with a similar name exists: `RX_DESCRIPTORS`
...
62 | / static mut RX_DESCRIPTORS: [RxDescriptor; NUM_DESCRIPTORS] =
63 | | [RxDescriptor::new(); NUM_DESCRIPTORS];
| |___________________________________________- similarly named static `RX_DESCRIPTORS` defined here
|
cannot find type `TxDescriptor` in this scope:
examples/ethernet-nucleo-h743zi2.rs#L54
error[E0412]: cannot find type `TxDescriptor` in this scope
--> examples/ethernet-nucleo-h743zi2.rs:54:29
|
54 | 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, 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, 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 (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 (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 (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 (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 (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, 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, 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)
build failed, waiting for other jobs to finish...
|
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, 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 (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 (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, 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, 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, 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, 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, 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, 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 (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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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/
|
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/
|