Skip to content

Commit

Permalink
actions: upgrade checkout action to v4
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
kwd-doodling committed Jun 3, 2024
1 parent 4612973 commit 29398af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checkpatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/iut_zephyr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
west init

- name: Checkout Intel HAL
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: modules/hal/intel

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sedi_docs_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
contents: write
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Git Prepare
shell: bash
Expand Down

0 comments on commit 29398af

Please sign in to comment.