Skip to content

Commit 68f4e8d

Browse files
Updated files with 'repo_helper'. (#45)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 6b24152 commit 68f4e8d

File tree

8 files changed

+31
-28
lines changed

8 files changed

+31
-28
lines changed

.github/workflows/flake8.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout 🛎️
23-
uses: "actions/checkout@v2"
23+
uses: "actions/checkout@v3"
2424

2525
- name: Check for changed files
2626
uses: dorny/paths-filter@v2
@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Setup Python 🐍
3535
if: steps.changes.outputs.code == 'true'
36-
uses: "actions/setup-python@v2"
36+
uses: "actions/setup-python@v4"
3737
with:
3838
python-version: "3.8"
3939

.github/workflows/mypy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout 🛎️
28-
uses: "actions/checkout@v2"
28+
uses: "actions/checkout@v3"
2929

3030
- name: Check for changed files
3131
uses: dorny/paths-filter@v2
@@ -38,9 +38,9 @@ jobs:
3838
3939
- name: Setup Python 🐍
4040
if: steps.changes.outputs.code == 'true'
41-
uses: "actions/setup-python@v2"
41+
uses: "actions/setup-python@v4"
4242
with:
43-
python-version: "3.6"
43+
python-version: "3.8"
4444

4545
- name: Install dependencies 🔧
4646
run: |

.github/workflows/python_ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "windows-2019"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-rc.1,pypy-3.6,pypy-3.7,pypy-3.8'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.6,pypy-3.7,pypy-3.8'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,14 +33,14 @@ jobs:
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
36-
- {python-version: "3.11.0-rc.1", testenvs: "py311-dev,build", experimental: True}
36+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3737
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3838
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3939
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
4040

4141
steps:
4242
- name: Checkout 🛎️
43-
uses: "actions/checkout@v2"
43+
uses: "actions/checkout@v3"
4444

4545
- name: Check for changed files
4646
if: startsWith(github.ref, 'refs/tags/') != true
@@ -55,7 +55,7 @@ jobs:
5555
- name: Setup Python 🐍
5656
id: setup-python
5757
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
58-
uses: "actions/setup-python@v2"
58+
uses: "actions/setup-python@v4"
5959
with:
6060
python-version: "${{ matrix.config.python-version }}"
6161

.github/workflows/python_ci_linux.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-rc.1,pypy-3.6,pypy-3.7,pypy-3.8'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.6,pypy-3.7,pypy-3.8'
2727

2828
strategy:
2929
fail-fast: False
@@ -34,14 +34,14 @@ jobs:
3434
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3535
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3636
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
37-
- {python-version: "3.11.0-rc.1", testenvs: "py311-dev,build", experimental: True}
37+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3838
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3939
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
4040
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
4141

4242
steps:
4343
- name: Checkout 🛎️
44-
uses: "actions/checkout@v2"
44+
uses: "actions/checkout@v3"
4545

4646
- name: Check for changed files
4747
if: startsWith(github.ref, 'refs/tags/') != true
@@ -56,7 +56,7 @@ jobs:
5656
- name: Setup Python 🐍
5757
id: setup-python
5858
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
59-
uses: "actions/setup-python@v2"
59+
uses: "actions/setup-python@v4"
6060
with:
6161
python-version: "${{ matrix.config.python-version }}"
6262

@@ -86,10 +86,10 @@ jobs:
8686
runs-on: "ubuntu-20.04"
8787
steps:
8888
- name: Checkout 🛎️
89-
uses: "actions/checkout@v2"
89+
uses: "actions/checkout@v3"
9090

9191
- name: Setup Python 🐍
92-
uses: "actions/setup-python@v2"
92+
uses: "actions/setup-python@v4"
9393
with:
9494
python-version: 3.8
9595

@@ -135,11 +135,11 @@ jobs:
135135
runs-on: "ubuntu-20.04"
136136
steps:
137137
- name: Checkout 🛎️
138-
uses: "actions/checkout@v2"
138+
uses: "actions/checkout@v3"
139139
if: startsWith(github.ref, 'refs/tags/')
140140

141141
- name: Setup Python 🐍
142-
uses: "actions/setup-python@v2"
142+
uses: "actions/setup-python@v4"
143143
if: startsWith(github.ref, 'refs/tags/')
144144
with:
145145
python-version: 3.8

.github/workflows/python_ci_macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-latest"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-rc.1,pypy-3.7,pypy-3.8'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.7,pypy-3.8'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,13 +33,13 @@ jobs:
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
36-
- {python-version: "3.11.0-rc.1", testenvs: "py311-dev,build", experimental: True}
36+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3737
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3838
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
3939

4040
steps:
4141
- name: Checkout 🛎️
42-
uses: "actions/checkout@v2"
42+
uses: "actions/checkout@v3"
4343

4444
- name: Check for changed files
4545
if: startsWith(github.ref, 'refs/tags/') != true
@@ -54,7 +54,7 @@ jobs:
5454
- name: Setup Python 🐍
5555
id: setup-python
5656
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
57-
uses: "actions/setup-python@v2"
57+
uses: "actions/setup-python@v4"
5858
with:
5959
python-version: "${{ matrix.config.python-version }}"
6060

.pre-commit-config.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
exclude: ^tests/bad_code.py$
55

6+
ci:
7+
autoupdate_schedule: quarterly
8+
69
repos:
710
- repo: https://github.com/repo-helper/pyproject-parser
811
rev: v0.7.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ license-key = "MIT"
3939
package = "flake8_github_actions"
4040

4141
[tool.mypy]
42-
python_version = "3.6"
42+
python_version = "3.8"
4343
namespace_packages = true
4444
check_untyped_defs = true
4545
warn_unused_ignores = true

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ requires =
3838
[envlists]
3939
test = py36, py37, py38, py39, py310, py311-dev, pypy36, pypy37, pypy38
4040
qa = mypy, lint
41-
cov = py36, coverage
41+
cov = py38, coverage
4242

4343
[testenv]
4444
setenv =
@@ -63,32 +63,32 @@ commands =
6363
check-wheel-contents dist/
6464

6565
[testenv:perflint]
66-
basepython = python3.6
66+
basepython = python3.8
6767
changedir = {toxinidir}
6868
ignore_errors = True
6969
skip_install = True
7070
deps = perflint
7171
commands = python3 -m perflint flake8_github_actions {posargs}
7272

7373
[testenv:mypy]
74-
basepython = python3.6
74+
basepython = python3.8
7575
ignore_errors = True
7676
changedir = {toxinidir}
7777
deps =
78-
mypy==0.942
78+
mypy==0.971
7979
-r{toxinidir}/tests/requirements.txt
8080
commands = mypy flake8_github_actions tests {posargs}
8181

8282
[testenv:pyup]
83-
basepython = python3.6
83+
basepython = python3.8
8484
skip_install = True
8585
ignore_errors = True
8686
changedir = {toxinidir}
8787
deps = pyupgrade-directories
8888
commands = pyup_dirs flake8_github_actions tests --py36-plus --recursive
8989

9090
[testenv:coverage]
91-
basepython = python3.6
91+
basepython = python3.8
9292
skip_install = True
9393
ignore_errors = True
9494
whitelist_externals = /bin/bash

0 commit comments

Comments
 (0)