We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37a719f commit f46b2d2Copy full SHA for f46b2d2
1 file changed
.github/actions/setup-windows/action.yml
@@ -14,18 +14,10 @@ runs:
14
with:
15
python-version: '3.x'
16
17
- - name: Cache Pip # Restore only, assuming prepare action populated it
18
- uses: actions/cache/restore@v4
19
- with:
20
- path: ~\AppData\Local\pip\Cache
21
- key: pip-windows-${{ hashFiles('.github/requirements.txt') }}
22
- restore-keys: |
23
- pip-windows-
24
-
25
- name: Configure VCPKG_DOWNLOADS
26
shell: pwsh
27
run: |
28
- New-Item -ItemType Directory -Force -Path "$HOME\AppData\Local\vcpkg\downloads"
+ New-Item -ItemType Directory -Force -Path "$HOME\AppData\Local\vcpkg\downloads" | Out-Null
29
30
- name: Install CMake & Ninja (Pip)
31
0 commit comments