Skip to content

Commit f18faed

Browse files
jakirkhamisurufhmaarrfk
authored
Use conda-incubator/[email protected] & mamba 1.0.0 (#383)
* Update mamba version * Use `conda-incubator/[email protected]` Upgrade to the most recent `conda-incubator/setup-miniconda`. This includes a number of fixes (including updating Node.js). * Use Mamba 1.0.0 * bump build number Co-authored-by: isuruf <[email protected]> Co-authored-by: Mark Harfouche <[email protected]>
1 parent db8f108 commit f18faed

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/autoupdate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v3
1010
with:
1111
ssh-key: ${{ secrets.MINIFORGE_AUTOUPDATE_SSH_PRIVATE_KEY }}
12-
- uses: conda-incubator/setup-miniconda@35d1405e78aa3f784fe3ce9a2eb378d5eeb62169
12+
- uses: conda-incubator/setup-miniconda@v2.2.0
1313
with:
1414
miniforge-variant: Miniforge3
1515
environment-file: .github/actions/autoupdate/environment.yml

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
- name: Checkout code
180180
uses: actions/checkout@v3
181181

182-
- uses: conda-incubator/setup-miniconda@35d1405e78aa3f784fe3ce9a2eb378d5eeb62169
182+
- uses: conda-incubator/setup-miniconda@v2.2.0
183183
with:
184184
miniconda-version: "latest"
185185
if: contains(matrix.OS_NAME, 'Windows')

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
shell: bash -l {0}
99
steps:
1010
- uses: actions/checkout@v3
11-
- uses: conda-incubator/setup-miniconda@35d1405e78aa3f784fe3ce9a2eb378d5eeb62169
11+
- uses: conda-incubator/setup-miniconda@v2.2.0
1212
- run: python -m pip install -r docs/requirements.txt
1313
- run: python docs/releases.py
1414
- uses: actions/upload-artifact@v3

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v3
1111
- name: Setup Miniconda
12-
uses: conda-incubator/setup-miniconda@v2
12+
uses: conda-incubator/setup-miniconda@v2.2.0
1313
- name: Install dependencies
1414
run: |
1515
conda install -c conda-forge shellcheck

Miniforge3/construct.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set version = os.environ.get("MINIFORGE_VERSION", "22.9.0-1") %}
1+
{% set version = os.environ.get("MINIFORGE_VERSION", "22.9.0-2") %}
22
{% set name = os.environ.get("MINIFORGE_NAME", "Miniforge3") %}
33

44
name: {{ name }}
@@ -27,7 +27,7 @@ specs:
2727
{% endif %}
2828

2929
{% if name.startswith("Mambaforge") %}
30-
- mamba 0.27.0
30+
- mamba 1.0.0
3131
{% endif %}
3232
- conda {{ version.split("-")[0] }}
3333

scripts/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ cp LICENSE "${TEMP_DIR}/"
3939
ls -al "${TEMP_DIR}"
4040

4141
if [[ "${TARGET_PLATFORM}" != win-* ]]; then
42-
MICROMAMBA_VERSION=0.27.0
43-
MICROMAMBA_BUILD=3
42+
MICROMAMBA_VERSION=1.0.0
43+
MICROMAMBA_BUILD=1
4444
mkdir "${TEMP_DIR}/micromamba"
4545
pushd "${TEMP_DIR}/micromamba"
4646
curl -L -O "https://anaconda.org/conda-forge/micromamba/${MICROMAMBA_VERSION}/download/${TARGET_PLATFORM}/micromamba-${MICROMAMBA_VERSION}-${MICROMAMBA_BUILD}.tar.bz2"

0 commit comments

Comments
 (0)