File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -21,16 +21,26 @@ jobs:
2121
2222 name : ' ${{ matrix.cfg.platform_name }} installer'
2323 runs-on : ${{ matrix.cfg.os }}
24+ defaults :
25+ run :
26+ # needed for conda to work
27+ shell : bash -el {0}
2428
2529 steps :
2630 - uses : actions/checkout@v4
27- - uses : s-weigand/setup-conda@v1
31+ - uses : conda-incubator/setup-miniconda@v3
32+ with :
33+ auto-update-conda : true
34+ auto-activate-base : true
35+ activate-environment : " "
36+ channels : conda-forge
37+
2838 - run : conda install --file ./workflow_env/conda-${{ matrix.cfg.build_platform }}.lock -y
2939
3040 - name : Install node
3141 uses : actions/setup-node@v4
3242 with :
33- node-version : ' 14 .x'
43+ node-version : ' 20 .x'
3444 cache : ' yarn'
3545
3646 - name : Install dependencies
You can’t perform that action at this time.
0 commit comments