From 4d8cb3d8c6a208eb0774e59f60e28ed4ef406bce Mon Sep 17 00:00:00 2001 From: Dong Wang Date: Mon, 3 Jun 2024 13:53:36 +0800 Subject: [PATCH] actions: upgrade checkout action to v4 To fix the following warinings on runs: ``` Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. ``` Signed-off-by: Dong Wang --- .github/workflows/checkpatch.yml | 2 +- .github/workflows/iut_zephyr_build.yml | 2 +- .github/workflows/sedi_docs_update.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/checkpatch.yml b/.github/workflows/checkpatch.yml index a6c39fd..7b7b882 100644 --- a/.github/workflows/checkpatch.yml +++ b/.github/workflows/checkpatch.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download Checkpatch Files from Zephyr RTOS shell: bash diff --git a/.github/workflows/iut_zephyr_build.yml b/.github/workflows/iut_zephyr_build.yml index 171d21d..e04d9c2 100644 --- a/.github/workflows/iut_zephyr_build.yml +++ b/.github/workflows/iut_zephyr_build.yml @@ -30,7 +30,7 @@ jobs: west init - name: Checkout Intel HAL - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: modules/hal/intel diff --git a/.github/workflows/sedi_docs_update.yml b/.github/workflows/sedi_docs_update.yml index 93c0240..2f4db67 100644 --- a/.github/workflows/sedi_docs_update.yml +++ b/.github/workflows/sedi_docs_update.yml @@ -16,7 +16,7 @@ jobs: contents: write steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Git Prepare shell: bash