File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -33,14 +33,12 @@ jobs:
33
33
steps :
34
34
- uses : actions/checkout@v3
35
35
36
- - name : Setup Mambaforge
36
+ - name : Setup Miniforge
37
37
uses : conda-incubator/setup-miniconda@v2
38
38
with :
39
- miniforge-variant : Mambaforge
40
39
miniforge-version : latest
41
40
python-version : " 3.10" # binderbot is failing with python 3.11
42
41
activate-environment : ${{ inputs.environment_name }}
43
- use-mamba : true
44
42
45
43
- name : Set cache date
46
44
if : inputs.use_cached_environment == 'true'
60
58
(inputs.use_cached_environment != 'true'
61
59
|| steps.cache.outputs.cache-hit != 'true')
62
60
run : |
63
- mamba env update -n ${{ inputs.environment_name }} -f ${{ inputs.environment_file }}
64
- mamba install -c conda-forge sphinxcontrib-applehelp=1.0.4 sphinxcontrib-devhelp=1.0.2 sphinxcontrib-htmlhelp=2.0.1 sphinxcontrib-qthelp=1.0.3 sphinxcontrib-serializinghtml=1.1.5
61
+ conda env update -n ${{ inputs.environment_name }} -f ${{ inputs.environment_file }}
62
+ conda install -c conda-forge sphinxcontrib-applehelp=1.0.4 sphinxcontrib-devhelp=1.0.2 sphinxcontrib-htmlhelp=2.0.1 sphinxcontrib-qthelp=1.0.3 sphinxcontrib-serializinghtml=1.1.5
65
63
66
64
- name : Check external links
67
65
run : |
You can’t perform that action at this time.
0 commit comments