From 9cd2404bea96b7f265c9bd381b4fe87948575074 Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Fri, 15 Mar 2024 11:39:50 -0700 Subject: [PATCH] .github/zephyr: upgrade obsolete actions/setup-python@v4 to v5 Fixes the following warning: https://github.com/thesofproject/sof/actions/runs/8289483047 ``` Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/setup-python@v4. 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 --- .github/workflows/zephyr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/zephyr.yml b/.github/workflows/zephyr.yml index 2b12a78ca82a..1101d08f0635 100644 --- a/.github/workflows/zephyr.yml +++ b/.github/workflows/zephyr.yml @@ -297,7 +297,7 @@ jobs: run: zephyr-sdk-0.16.4_windows-x86_64/zephyr-sdk-0.16.4/setup.cmd /t all /h /c - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.8' @@ -320,7 +320,7 @@ jobs: # Call Setup Python again to save the PIP packages in cache - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 id: cache-python with: python-version: '3.8'