Skip to content

Commit 32c71a4

Browse files
authored
actions: update python (#436)
* update python * update checkout action
1 parent d903d41 commit 32c71a4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/editorconfig.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ jobs:
3030
name: Lint for editorconfig violations
3131
steps:
3232
- name: Checkout the repository
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v3
3434
- name: Check for editorconfig violations
3535
uses: editorconfig-checker/action-editorconfig-checker@v1

.github/workflows/py-validation.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
timeout-minutes: 10
1717

1818
steps:
19-
- uses: actions/checkout@v2
20-
- name: Set up Python 3.6
21-
uses: actions/setup-python@v2
19+
- uses: actions/checkout@v3
20+
- name: Set up Python 3.7
21+
uses: actions/setup-python@v4
2222
with:
23-
python-version: '3.6'
23+
python-version: '3.7'
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip setuptools wheel

0 commit comments

Comments
 (0)