Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/batch-hyp3-isce2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
repository: relativeorbit/workflows

- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
cache-environment: true
environment-file: hyp3.conda-lock.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/burst2safe_topsApp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
df -h

- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
cache-environment: true
environment-file: environment-burst2safe.yml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/conda-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

# mamba-org/setup-micromamba@v1 requires a local file
# mamba-org/setup-micromamba@v2 requires a local file
- name: Pull Remote Conda Environment Definition
continue-on-error: true
run: |
wget https://raw.githubusercontent.com/relativeorbit/workflows/main/hyp3.conda-lock.yml -O /tmp/conda-lock.yml

- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
cache-environment: true
environment-file: /tmp/conda-lock.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hyp3-isce2_burst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
cache-environment: true
environment-file: hyp3.conda-lock.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge_bursts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
cache-environment: true
environment-file: hyp3.conda-lock.yml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pair-hyp3-isce2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ jobs:
shell: bash -el {0}

steps:
# mamba-org/setup-micromamba@v1 requires a local file
# mamba-org/setup-micromamba@v2 requires a local file
# Ensures consistent environment when this workflow is called by one in another repository with its own environment.yml
- name: Pull Remote Conda Environment Definition
continue-on-error: true
run: |
wget https://raw.githubusercontent.com/relativeorbit/workflows/main/hyp3.conda-lock.yml -O /tmp/conda-lock.yml

- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
cache-environment: true
environment-file: /tmp/conda-lock.yml
Expand Down