Skip to content

Commit 3aa8acf

Browse files
authored
Bump various dependency pins (#419)
1 parent 3ea9f62 commit 3aa8acf

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
python-version: ["3.8", "3.12"]
3333
fail-fast: false
3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
- uses: actions/setup-python@v4
3737
with:
3838
python-version: ${{ matrix.python-version }}
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
timeout-minutes: 5
4949
steps:
50-
- uses: actions/checkout@v3
50+
- uses: actions/checkout@v4
5151
- uses: actions/setup-python@v4
5252
with:
5353
python-version: "3.11"
@@ -67,7 +67,7 @@ jobs:
6767
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
6868
fail-fast: false
6969
steps:
70-
- uses: actions/checkout@v3
70+
- uses: actions/checkout@v4
7171
- uses: actions/setup-python@v4
7272
with:
7373
python-version: ${{ matrix.python-version }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Build and publish Python distributions to PyPI
1414
runs-on: ubuntu-20.04
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python 3.10
1818
uses: actions/setup-python@v4
1919
with:

.github/workflows/typeshed_primer.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout flake8-pyi on target branch
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
ref: ${{ github.base_ref }}
2929
path: old_plugin
3030
- name: Checkout flake8-pyi on PR branch
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
with:
3333
path: new_plugin
3434
- name: Checkout typeshed
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
repository: python/typeshed
3838
path: typeshed

.github/workflows/typeshed_primer_comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Download errors
2222
uses: actions/github-script@v6
2323
with:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ dev = [
6464
"flake8-bugbear==23.9.16",
6565
"flake8-noqa==1.3.2",
6666
"isort==5.12.0", # Must match .pre-commit-config.yaml
67-
"mypy==1.5.1",
68-
"pre-commit-hooks==4.4.0", # Must match .pre-commit-config.yaml
67+
"mypy==1.6.0",
68+
"pre-commit-hooks==4.5.0", # Must match .pre-commit-config.yaml
6969
"pytest==7.4.2",
7070
"types-pyflakes<4",
7171
]

0 commit comments

Comments
 (0)