From 21d729d758da8e6ac2debf1ae64422c80b4a39fa Mon Sep 17 00:00:00 2001 From: jdegenstein Date: Thu, 15 Jun 2023 09:37:19 -0500 Subject: [PATCH] Update actions to use setup-micromamba instead of prov mm Update actions to use setup-micromamba instead of provision-with-micromamba --- .../workflows/pyinstaller-builds-actions-PIP-TAR.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pyinstaller-builds-actions-PIP-TAR.yml b/.github/workflows/pyinstaller-builds-actions-PIP-TAR.yml index 8c3da03..43e84e5 100644 --- a/.github/workflows/pyinstaller-builds-actions-PIP-TAR.yml +++ b/.github/workflows/pyinstaller-builds-actions-PIP-TAR.yml @@ -13,13 +13,13 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - - uses: mamba-org/provision-with-micromamba@main + - uses: mamba-org/setup-micromamba@v1 with: #miniconda-version: "latest" #auto-update-conda: true environment-name: test environment-file: environment.yml - extra-specs: + create-args: >- python=3.10 - name: pip install cadquery CQ-editor ... etc shell: bash --login {0} @@ -56,13 +56,13 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 - - uses: mamba-org/provision-with-micromamba@main + - uses: mamba-org/setup-micromamba@v1 with: #miniconda-version: "latest" #auto-update-conda: true environment-name: test environment-file: environment.yml - extra-specs: + create-args: >- python=3.10 - name: pip install cadquery CQ-editor ... etc shell: bash --login {0} @@ -95,13 +95,13 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - - uses: mamba-org/provision-with-micromamba@main + - uses: mamba-org/setup-micromamba@v1 with: #miniconda-version: "latest" #auto-update-conda: true environment-name: test environment-file: environment.yml - extra-specs: + create-args: >- python=3.10 - name: pip install cadquery CQ-editor ... etc shell: powershell