Skip to content

Commit

Permalink
.github/zephyr: upgrade deprecated actions/[email protected] to v4
Browse files Browse the repository at this point in the history
Fixes a lot of instances of this warning:

Node.js 16 actions are deprecated. Please update the following actions
to use Node.js 20: actions/[email protected]. For more information see:
https://github.blog/changelog/
  2023-09-22-github-actions-transitioning-from-node-16-to-node-20/

Signed-off-by: Marc Herbert <[email protected]>
  • Loading branch information
marc-hb committed Mar 6, 2024
1 parent 7248a26 commit c9cc9b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/zephyr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,14 +240,14 @@ jobs:
# or delete cache manually in Github Actions tab
- name: Cache unzip
id: cache-unzip
uses: actions/cache@v3.0.11
uses: actions/cache@v4
with:
path: unzip-5.51-1-bin.zip
key: ${{ runner.os }}-cache-unzip-5-51-1

- name: Cache wget
id: cache-wget
uses: actions/cache@v3.0.11
uses: actions/cache@v4
with:
path: wget-1.11.4-1-bin.zip
key: ${{ runner.os }}-cache-wget-1-11-4-1
Expand All @@ -256,7 +256,7 @@ jobs:
# sof/zephyr/docker-run.sh
- name: Cache Zephyr SDK 0.16.4
id: cache-zephyr-sdk
uses: actions/cache@v3.0.11
uses: actions/cache@v4
with:
path: zephyr-sdk-0.16.4_windows-x86_64.7z
key: ${{ runner.os }}-cache-zephyr-sdk-0-16-4
Expand Down

0 comments on commit c9cc9b9

Please sign in to comment.