Skip to content

Commit

Permalink
Merge pull request #335 from abkfenris/Update-Micromamba-action
Browse files Browse the repository at this point in the history
Updates the micromamba action
  • Loading branch information
emiliom authored Oct 4, 2024
2 parents 7796cd9 + 7f477c9 commit 2d3cfdc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
open-pull-requests-limit:
schedule:
interval: "weekly"
7 changes: 5 additions & 2 deletions .github/workflows/check_sphinx_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
submodules: true

- name: Install Conda environment from environment.yml
uses: mamba-org/provision-with-micromamba@v11
uses: mamba-org/setup-micromamba@v2.0.0
with:
environment-file: environment.yml
cache-environment: true

- name: Build documentation
shell: bash -l {0}
Expand All @@ -29,7 +32,7 @@ jobs:

# https://github.com/actions/upload-artifact
- name: Upload Website artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: Website
path: site.tar.gz
6 changes: 5 additions & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ jobs:
submodules: true

- name: Install Conda environment from environment.yml
uses: mamba-org/provision-with-micromamba@v11
uses: mamba-org/setup-micromamba@v2.0.0
with:
environment-file: environment.yml
cache-environment: true


- name: Build documentation
shell: bash -l {0}
Expand Down

0 comments on commit 2d3cfdc

Please sign in to comment.