diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index 1209d0e79f..806698e506 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -32,7 +32,7 @@ jobs: $p = Get-ChildItem -Recurse "${env:RUNNER_TEMP}\artifacts" | where {$_.Name -eq "msys-2.0.dll"} | Select -ExpandProperty VersionInfo | Select -First 1 -ExpandProperty FileName cp $p "c:/Program Files/Git/usr/bin/msys-2.0.dll" - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 id: restore-wt with: key: wt-${{ env.WT_VERSION }} @@ -43,7 +43,7 @@ jobs: run: | curl -fLo "$RUNNER_TEMP/wt.zip" \ https://github.com/microsoft/terminal/releases/download/v$WT_VERSION/Microsoft.WindowsTerminal_${WT_VERSION}_x64.zip - - uses: actions/cache/save@v4 + - uses: actions/cache/save@v5 if: steps.restore-wt.outputs.cache-hit != 'true' with: key: wt-${{ env.WT_VERSION }} @@ -54,7 +54,7 @@ jobs: run: | "$WINDIR/system32/tar.exe" -xf "$RUNNER_TEMP/wt.zip" && cygpath -aw terminal-$WT_VERSION >>$GITHUB_PATH - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 id: restore-ahk with: key: ahk-${{ env.AUTOHOTKEY_VERSION }} @@ -65,7 +65,7 @@ jobs: run: | curl -L -o "$RUNNER_TEMP/ahk.zip" \ https://github.com/AutoHotkey/AutoHotkey/releases/download/v$AUTOHOTKEY_VERSION/AutoHotkey_$AUTOHOTKEY_VERSION.zip - - uses: actions/cache/save@v4 + - uses: actions/cache/save@v5 if: steps.restore-ahk.outputs.cache-hit != 'true' with: key: ahk-${{ env.AUTOHOTKEY_VERSION }} @@ -77,7 +77,7 @@ jobs: "$WINDIR/system32/tar.exe" -C "$RUNNER_TEMP/ahk" -xf "$RUNNER_TEMP/ahk.zip" && cygpath -aw "$RUNNER_TEMP/ahk" >>$GITHUB_PATH - uses: actions/setup-node@v6 # the hook uses node for the background process - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 id: restore-win32-openssh with: key: win32-openssh-${{ env.WIN32_OPENSSH_VERSION }} @@ -88,7 +88,7 @@ jobs: run: | curl -fLo "$RUNNER_TEMP/win32-openssh.zip" \ https://github.com/PowerShell/Win32-OpenSSH/releases/download/v$WIN32_OPENSSH_VERSION/OpenSSH-Win64.zip - - uses: actions/cache/save@v4 + - uses: actions/cache/save@v5 if: steps.restore-win32-openssh.outputs.cache-hit != 'true' with: key: win32-openssh-${{ env.WIN32_OPENSSH_VERSION }}