diff --git a/.github/workflows/autoupdate.yml b/.github/workflows/autoupdate.yml index cf1989ed..67c33e90 100644 --- a/.github/workflows/autoupdate.yml +++ b/.github/workflows/autoupdate.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v3 with: ssh-key: ${{ secrets.MINIFORGE_AUTOUPDATE_SSH_PRIVATE_KEY }} - - uses: conda-incubator/setup-miniconda@35d1405e78aa3f784fe3ce9a2eb378d5eeb62169 + - uses: conda-incubator/setup-miniconda@v2.2.0 with: miniforge-variant: Miniforge3 environment-file: .github/actions/autoupdate/environment.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 210674e1..977e13df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -179,7 +179,7 @@ jobs: - name: Checkout code uses: actions/checkout@v3 - - uses: conda-incubator/setup-miniconda@35d1405e78aa3f784fe3ce9a2eb378d5eeb62169 + - uses: conda-incubator/setup-miniconda@v2.2.0 with: miniconda-version: "latest" if: contains(matrix.OS_NAME, 'Windows') diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 12bcb9e6..ed326f14 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -8,7 +8,7 @@ jobs: shell: bash -l {0} steps: - uses: actions/checkout@v3 - - uses: conda-incubator/setup-miniconda@35d1405e78aa3f784fe3ce9a2eb378d5eeb62169 + - uses: conda-incubator/setup-miniconda@v2.2.0 - run: python -m pip install -r docs/requirements.txt - run: python docs/releases.py - uses: actions/upload-artifact@v3 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 75a33a4b..6a3c3480 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,7 +9,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup Miniconda - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v2.2.0 - name: Install dependencies run: | conda install -c conda-forge shellcheck diff --git a/Miniforge3/construct.yaml b/Miniforge3/construct.yaml index 02e0878a..1eeac060 100644 --- a/Miniforge3/construct.yaml +++ b/Miniforge3/construct.yaml @@ -1,4 +1,4 @@ -{% set version = os.environ.get("MINIFORGE_VERSION", "22.9.0-1") %} +{% set version = os.environ.get("MINIFORGE_VERSION", "22.9.0-2") %} {% set name = os.environ.get("MINIFORGE_NAME", "Miniforge3") %} name: {{ name }} @@ -27,7 +27,7 @@ specs: {% endif %} {% if name.startswith("Mambaforge") %} - - mamba 0.27.0 + - mamba 1.0.0 {% endif %} - conda {{ version.split("-")[0] }} diff --git a/scripts/build.sh b/scripts/build.sh index 5db1b994..d1ea2c2a 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -39,8 +39,8 @@ cp LICENSE "${TEMP_DIR}/" ls -al "${TEMP_DIR}" if [[ "${TARGET_PLATFORM}" != win-* ]]; then - MICROMAMBA_VERSION=0.27.0 - MICROMAMBA_BUILD=3 + MICROMAMBA_VERSION=1.0.0 + MICROMAMBA_BUILD=1 mkdir "${TEMP_DIR}/micromamba" pushd "${TEMP_DIR}/micromamba" curl -L -O "https://anaconda.org/conda-forge/micromamba/${MICROMAMBA_VERSION}/download/${TARGET_PLATFORM}/micromamba-${MICROMAMBA_VERSION}-${MICROMAMBA_BUILD}.tar.bz2"