Skip to content

Commit a96ff69

Browse files
authored
Add dependabot for github actions. (#31)
1 parent 1b5b8b6 commit a96ff69

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

Diff for: .github/dependabot.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"

Diff for: .github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
3131

3232
steps:
33-
- uses: actions/checkout@v2
33+
- uses: actions/checkout@v3
3434
- uses: conda-incubator/setup-miniconda@v2
3535
with:
3636
auto-update-conda: false

Diff for: .github/workflows/publish-to-pypi.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
name: Build and publish Python 🐍 distributions 📦 to PyPI
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@master
10+
- uses: actions/checkout@v3
1111

1212
- name: Set up Python 3.8
13-
uses: actions/setup-python@v1
13+
uses: actions/setup-python@v4
1414
with:
1515
python-version: 3.8
1616

0 commit comments

Comments
 (0)