Skip to content

Commit eb14475

Browse files
committed
chore(workflows): explicitly use python-version
1 parent 77c1f03 commit eb14475

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
with:
2727
fetch-depth: 0
2828
- uses: actions/setup-python@v4
29+
with:
30+
python-version: "3.10"
2931
- run: pip install --upgrade tox
3032
- name: Run commitizen (https://commitizen-tools.github.io/commitizen/)
3133
run: tox -e cz

.github/workflows/pre_commit.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
steps:
3232
- uses: actions/checkout@v3
3333
- uses: actions/setup-python@v4
34+
with:
35+
python-version: "3.10"
3436
- run: pip install --upgrade -r requirements.txt -r requirements-lint.txt pre-commit
3537
- name: Run pre-commit install
3638
run: pre-commit install

0 commit comments

Comments
 (0)