0dcb0518be
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
836 B
YAML
35 lines
836 B
YAML
name: Scancode
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
scancode_job:
|
|
runs-on: ubuntu-22.04
|
|
name: Scan code for licenses
|
|
steps:
|
|
- name: Checkout the code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Scan the code
|
|
id: scancode
|
|
uses: zephyrproject-rtos/action_scancode@v4
|
|
with:
|
|
directory-to-scan: 'scan/'
|
|
- name: Artifact Upload
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: scancode
|
|
path: ./artifacts
|
|
|
|
- name: Verify
|
|
run: |
|
|
if [ -s ./artifacts/report.txt ]; then
|
|
report=$(cat ./artifacts/report.txt)
|
|
report="${report//'%'/'%25'}"
|
|
report="${report//$'\n'/'%0A'}"
|
|
report="${report//$'\r'/'%0D'}"
|
|
echo "::error file=./artifacts/report.txt::$report"
|
|
exit 1
|
|
fi
|