summaryrefslogtreecommitdiff
path: root/.github/workflows/style.yaml
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2023-01-18 00:58:18 +0300
committerSergey Shepelev <temotor@gmail.com>2023-01-18 08:55:02 +0300
commitd05b2a9dde875eece42c8c09c7a793dd43407cc3 (patch)
tree1cf5686809ec5dcd52ed4696500c82377ea1a0fd /.github/workflows/style.yaml
parentcaf9f9983a43c537efff5c4c9ff1d543af6e1220 (diff)
downloadeventlet-d05b2a9dde875eece42c8c09c7a793dd43407cc3.tar.gz
chore: CI upgrades, pycodestyle fix 2 empty lines after class/def
- github actions ubuntu-latest switched to 22.04 with python3>=3.7 - tool: pep8 was renamed and upgraded to pycodestyle 2.1, fixed 2 empty lines after class/def - common github actions upgrade to v3 https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
Diffstat (limited to '.github/workflows/style.yaml')
-rw-r--r--.github/workflows/style.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/style.yaml b/.github/workflows/style.yaml
index d3955f7..d3f6384 100644
--- a/.github/workflows/style.yaml
+++ b/.github/workflows/style.yaml
@@ -10,10 +10,10 @@ jobs:
timeout-minutes: 5
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: cache pip
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('.github/workflows/style.yaml') }}
@@ -21,7 +21,7 @@ jobs:
${{ runner.os }}-pip-
${{ runner.os }}-
- name: cache tox
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: .tox
key: ${{ runner.os }}-tox-style-${{ hashFiles('tox.ini') }}
@@ -31,7 +31,7 @@ jobs:
${{ runner.os }}-
- name: setup python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v3
with:
python-version: 3.x
- name: install tox