Skip to content

Commit 3a1d41d

Browse files
committed
Switch link checker to miniforge
1 parent 82da0b8 commit 3a1d41d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/sphinx-link-checker.yaml

+3-5
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,12 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@v3
3535

36-
- name: Setup Mambaforge
36+
- name: Setup Miniforge
3737
uses: conda-incubator/setup-miniconda@v2
3838
with:
39-
miniforge-variant: Mambaforge
4039
miniforge-version: latest
4140
python-version: "3.10" # binderbot is failing with python 3.11
4241
activate-environment: ${{ inputs.environment_name }}
43-
use-mamba: true
4442

4543
- name: Set cache date
4644
if: inputs.use_cached_environment == 'true'
@@ -60,8 +58,8 @@ jobs:
6058
(inputs.use_cached_environment != 'true'
6159
|| steps.cache.outputs.cache-hit != 'true')
6260
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
6563
6664
- name: Check external links
6765
run: |

0 commit comments

Comments
 (0)