Skip to content

Commit 0e51b2f

Browse files
authored
Merge pull request #257 from mwcraig/improve-dependabot
Add manual trigger for copy workflow and update python used
2 parents 66f1138 + 96dd65e commit 0e51b2f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/copy_conda_packages.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
on:
2+
workflow_dispatch: # Allows manual triggering
23
schedule:
34
# Run once a day at 22:40 UTC
45
- cron: '55 22 * * *'
@@ -8,12 +9,14 @@ jobs:
89
runs-on: ubuntu-latest
910
steps:
1011

11-
- uses: actions/checkout@v4
12+
- name: checkout
13+
uses: actions/checkout@v4
1214

13-
- uses: conda-incubator/setup-miniconda@v3
15+
- name: Install conda
16+
uses: conda-incubator/setup-miniconda@v3
1417
with:
1518
auto-update-conda: true
16-
python-version: 3.10
19+
python-version: 3.11
1720

1821
- name: Install dependencies
1922
shell: bash -l {0}

0 commit comments

Comments
 (0)