Skip to content

Commit 0fcb67b

Browse files
committed
pin to <2.6
1 parent 88742bf commit 0fcb67b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ jobs:
111111
- name: Set up conda executable
112112
run: |
113113
if [[ "${{ matrix.conda-standalone }}" == "micromamba" ]]; then
114-
conda create -yqp "${{ runner.temp }}/micromamba" -c conda-forge micromamba
114+
# Pin to <2.6 due to cache regression: https://github.com/mamba-org/mamba/issues/4250
115+
conda create -yqp "${{ runner.temp }}/micromamba" -c conda-forge "micromamba<2.6"
115116
if [[ "${{ runner.os }}" == "Windows" ]]; then
116117
echo "CONSTRUCTOR_CONDA_EXE=${{ runner.temp }}/micromamba/Library/bin/micromamba.exe" >> $GITHUB_ENV
117118
else

0 commit comments

Comments
 (0)