Skip to content

Commit f04d8d3

Browse files
authored
Set Python version to 3.10 in workflow (#87)
* Set Python version to 3.10 in workflow * Add Dependabot configuration for GitHub Actions and pip * Add Dependabot configuration for GitHub Actions
1 parent bce4189 commit f04d8d3

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.github/workflows/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Dependabot
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "monthly"
8+
labels:
9+
- "dependencies"
10+
- "actions"
11+
- package-ecosystem: "pip"
12+
directory: "/"
13+
schedule:
14+
interval: "weekly"
15+
versioning-strategy: increase-if-necessary
16+
labels:
17+
- "dependencies"
18+
- "python"

.github/workflows/python.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
- uses: actions/checkout@v3
1717
- name: Set up Python3
1818
uses: actions/setup-python@v3
19+
with:
20+
python-version: '3.10'
1921
- name: Install dependencies
2022
run: |
2123
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)