Skip to content

Commit

Permalink
actions: update python (#436)
Browse files Browse the repository at this point in the history
* update python

* update checkout action
  • Loading branch information
larshp authored Nov 21, 2022
1 parent d903d41 commit 32c71a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/editorconfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ jobs:
name: Lint for editorconfig violations
steps:
- name: Checkout the repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Check for editorconfig violations
uses: editorconfig-checker/action-editorconfig-checker@v1
8 changes: 4 additions & 4 deletions .github/workflows/py-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
uses: actions/setup-python@v2
- uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: '3.6'
python-version: '3.7'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
Expand Down

0 comments on commit 32c71a4

Please sign in to comment.