Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2022
USER ContainerAdministrator
RUN powershell -Command Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://vcredist.com/install.ps1'))
USER ContainerUser
ADD https://github.com/mamba-org/micromamba-releases/releases/download/1.5.10-0/micromamba-win-64 micromamba.exe
ADD https://github.com/mamba-org/micromamba-releases/releases/download/2.1.0-0/micromamba-win-64 micromamba.exe
RUN mkdir %USERPROFILE%\micromamba && \
copy micromamba.exe %USERPROFILE%\micromamba && \
del micromamba.exe && \
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/reusable-python-setup_conda/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ runs:
os_conda=$( [[ $RUNNER_OS == "Linux" ]] && echo "linux" || echo "win")
echo "os_conda=$os_conda" >> $GITHUB_ENV
- name: Setup conda env
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
micromamba-version: 1.5.8-0
micromamba-version: 2.1.0-0
environment-file: ${{ env.CONDA_LOCK_ENV_FILE }}
environment-name: test_env
init-shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-python-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_conda@main
- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_conda@GA-8604
name: Setup conda env
if: ${{ inputs.package-manager == 'conda' }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-python-static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
with:
python-version: ${{inputs.python-version}}

- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_conda@main
- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_conda@GA-8604
name: Setup conda env
if: ${{ inputs.package-manager == 'conda' }}
with:
Expand Down