From 28fb1afa22d793e76818d0fd67ce0ff227f6f0ca Mon Sep 17 00:00:00 2001 From: Tisham Dhar Date: Thu, 21 Nov 2024 14:56:31 +1030 Subject: [PATCH 1/2] Fix miniconda installation --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b38870cb3..8d0c5272e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -77,7 +77,7 @@ jobs: tests/env key: ${{ runner.os }}-test-env-${{ hashFiles('tests/test-env.yml') }} - - uses: conda-incubator/setup-miniconda@v2 + - uses: conda-incubator/setup-miniconda@v3 if: steps.conda_cache.outputs.cache-hit != 'true' with: channels: conda-forge,defaults @@ -85,7 +85,6 @@ jobs: activate-environment: "" # mamba-version: "*" use-mamba: true - miniforge-variant: Mambaforge - name: Dump Conda Environment Info shell: bash -l {0} From 8218aad177ee66210501bc83687661b5d7eb085b Mon Sep 17 00:00:00 2001 From: Tisham Dhar Date: Thu, 21 Nov 2024 15:06:35 +1030 Subject: [PATCH 2/2] Mamba does not get installed without mamba-version --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8d0c5272e..51e6f7e8f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -83,7 +83,7 @@ jobs: channels: conda-forge,defaults channel-priority: true activate-environment: "" - # mamba-version: "*" + mamba-version: "*" use-mamba: true - name: Dump Conda Environment Info