Skip to content

Commit

Permalink
Bump various dependency pins
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood committed Oct 11, 2023
1 parent 3ea9f62 commit 6cff5a6
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
python-version: ["3.8", "3.12"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
Expand All @@ -67,7 +67,7 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/typeshed_primer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout flake8-pyi on target branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}
path: old_plugin
- name: Checkout flake8-pyi on PR branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: new_plugin
- name: Checkout typeshed
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: python/typeshed
path: typeshed
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typeshed_primer_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download errors
uses: actions/github-script@v6
with:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ dev = [
"flake8-bugbear==23.9.16",
"flake8-noqa==1.3.2",
"isort==5.12.0", # Must match .pre-commit-config.yaml
"mypy==1.5.1",
"pre-commit-hooks==4.4.0", # Must match .pre-commit-config.yaml
"mypy==1.6.0",
"pre-commit-hooks==4.5.0", # Must match .pre-commit-config.yaml
"pytest==7.4.2",
"types-pyflakes<4",
]
Expand Down

0 comments on commit 6cff5a6

Please sign in to comment.