ci: build: update checkout/upload-artifact actions
These actions are triggering warnings about usage of deprecated features (e.g. NodeJS 12). Use latest version of the actions. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
51532b3016
commit
1941a63998
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
||||||
CMAKE_PREFIX_PATH: /opt/toolchains
|
CMAKE_PREFIX_PATH: /opt/toolchains
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
path: example-application
|
path: example-application
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ jobs:
|
||||||
../zephyr/scripts/twister -G --board-root boards/ --testsuite-root ./tests/
|
../zephyr/scripts/twister -G --board-root boards/ --testsuite-root ./tests/
|
||||||
|
|
||||||
- name: Archive firmware
|
- name: Archive firmware
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: firmware
|
name: firmware
|
||||||
path: example-application/build/zephyr/zephyr.*
|
path: example-application/build/zephyr/zephyr.*
|
||||||
|
|
Loading…
Reference in a new issue