Update Github actions to their latest versions to fix the following warnings on runs: ``` Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions/upload-artifact@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. ``` `actions/checkout` and `actions/cache` are straight Node version upgrades, `actions/upload-artifact` and `actions/download-artifact` have breaking changes, but don't appear to affect our usage. https://github.com/actions/upload-artifact Signed-off-by: Jordan Yates <jordan.yates@data61.csiro.au>
35 lines
1.0 KiB
YAML
35 lines
1.0 KiB
YAML
name: Error numbers
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/errno.yml'
|
|
- 'lib/libc/minimal/include/errno.h'
|
|
- 'scripts/ci/errno.py'
|
|
|
|
jobs:
|
|
check-errno:
|
|
runs-on: ubuntu-22.04
|
|
container:
|
|
image: ghcr.io/zephyrproject-rtos/ci:v0.26.6
|
|
|
|
steps:
|
|
- name: Apply container owner mismatch workaround
|
|
run: |
|
|
# FIXME: The owner UID of the GITHUB_WORKSPACE directory may not
|
|
# match the container user UID because of the way GitHub
|
|
# Actions runner is implemented. Remove this workaround when
|
|
# GitHub comes up with a fundamental fix for this problem.
|
|
git config --global --add safe.directory ${GITHUB_WORKSPACE}
|
|
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Environment Setup
|
|
run: |
|
|
echo "ZEPHYR_SDK_INSTALL_DIR=/opt/toolchains/zephyr-sdk-$( cat SDK_VERSION )" >> $GITHUB_ENV
|
|
|
|
- name: Run errno.py
|
|
run: |
|
|
export ZEPHYR_BASE=${PWD}
|
|
./scripts/ci/errno.py
|