Store choco cache in GitHub Actions cache

This step is weirdly slow, perhaps it will go faster if we stash the download in GitHub
This commit is contained in:
Zanie Blue 2024-03-08 18:13:44 -06:00
parent 2845cebe18
commit 38efe24a54

View file

@ -251,6 +251,14 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: "Configure choco cache"
run: choco config set cacheLocation ./.choco-cache
- uses: actions/cache@v4
with:
path: ./.choco-cache
key: choco-cache
- name: "Install Python" - name: "Install Python"
run: choco install python3 --verbose --version=3.9.13 run: choco install python3 --verbose --version=3.9.13