Skip to content

Commit 2d3cfdc

Browse files
authored
Merge pull request #335 from abkfenris/Update-Micromamba-action
Updates the micromamba action
2 parents 7796cd9 + 7f477c9 commit 2d3cfdc

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

.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/check_sphinx_build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ jobs:
1616
submodules: true
1717

1818
- name: Install Conda environment from environment.yml
19-
uses: mamba-org/provision-with-micromamba@v11
19+
uses: mamba-org/[email protected]
20+
with:
21+
environment-file: environment.yml
22+
cache-environment: true
2023

2124
- name: Build documentation
2225
shell: bash -l {0}
@@ -29,7 +32,7 @@ jobs:
2932

3033
# https://github.com/actions/upload-artifact
3134
- name: Upload Website artifact
32-
uses: actions/upload-artifact@v1
35+
uses: actions/upload-artifact@v4
3336
with:
3437
name: Website
3538
path: site.tar.gz

.github/workflows/deploy-docs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ 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/[email protected]
16+
with:
17+
environment-file: environment.yml
18+
cache-environment: true
19+
1620

1721
- name: Build documentation
1822
shell: bash -l {0}

0 commit comments

Comments
 (0)