Skip to content

Commit 7244d1a

Browse files
committed
Updates the micromamba action
The micromamba action that we were using was deprecated and didn't handle the Micromamba v2 upgrade well. This should move things to the supported action. I've also added Dependabot for Github Actions, so that will hopefully help at least that part of the workflows stay up to date.
1 parent 7796cd9 commit 7244d1a

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
open-pull-requests-limit:
6+
schedule:
7+
interval: "weekly"

.github/workflows/deploy-docs.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ jobs:
1212
submodules: true
1313

1414
- name: Install Conda environment from environment.yml
15-
uses: mamba-org/provision-with-micromamba@v11
15+
uses: mamba-org/setup-micromamba@v2.0.0
16+
environment-file: environment.yml
17+
cache-environment: true
18+
1619

1720
- name: Build documentation
1821
shell: bash -l {0}

0 commit comments

Comments
 (0)