Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand Down
Loading