@@ -303,24 +303,24 @@ jobs:
303303
304304 # Keep this SDK version identical to the one in
305305 # sof/zephyr/docker-run.sh
306- - name : Cache Zephyr SDK 1.0.0
306+ - name : Cache Zephyr SDK 1.0.1
307307 id : cache-zephyr-sdk
308308 uses : actions/cache@v4
309309 with :
310- path : zephyr-sdk-1.0.0_windows -x86_64_gnu.7z
311- key : ${{ runner.os }}-cache-zephyr-sdk-1-0-0
310+ path : zephyr-sdk-1.0.1_windows -x86_64_gnu.7z
311+ key : ${{ runner.os }}-cache-zephyr-sdk-1-0-1
312312
313313 # Wget is needed by Zephyr SDK setup.cmd installation script
314314 - name : Download wget
315315 if : ${{ steps.cache-wget.outputs.cache-hit != 'true' }}
316316 run : |
317317 curl -L -O http://downloads.sourceforge.net/gnuwin32/wget-1.11.4-1-bin.zip
318318
319- - name : Download Zephyr SDK 1.0.0
319+ - name : Download Zephyr SDK 1.0.1
320320 if : ${{ steps.cache-zephyr-sdk.outputs.cache-hit != 'true' }}
321321 run : | # yamllint disable-line rule:line-length
322322 curl -L -O `
323- https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v1.0.0 /zephyr-sdk-1.0.0_windows -x86_64_gnu.7z
323+ https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v1.0.1 /zephyr-sdk-1.0.1_windows -x86_64_gnu.7z
324324
325325 # Unzips every .zip package to directory matching its name without extension
326326 - name : Unzip downloaded packages
@@ -343,7 +343,7 @@ jobs:
343343 # setup.cmd may not be called in from msys shell as it does not parse
344344 # forward slash script input arguments correctly.
345345 - name : Install Zephyr SDK
346- run : zephyr-sdk-1.0.0_windows -x86_64_gnu/zephyr-sdk-1.0.0 /setup.cmd /t all /h /c
346+ run : zephyr-sdk-1.0.1_windows -x86_64_gnu/zephyr-sdk-1.0.1 /setup.cmd /t all /h /c
347347
348348 - name : Setup Python
349349 uses : actions/setup-python@v5
0 commit comments