Skip to content

Commit

Permalink
Bump dev versions (#11)
Browse files Browse the repository at this point in the history
Update dev dependencies

pyproject.toml:
- pytest (6.2.5 -> 7.0.1)
- flake8-bugbear (21.11.29 -> 22.1.11)
- mypy (0.910 -> 0.931)
- pytest (6.2.5 -> 7.0.1)

Github workflows:
- actions/setup-python (v2.2.2 -> v2.3.2)
- peter-evans/create-pull-request v3.10.1 -> v3.12.1)
- actions/setup-python (v2.2.2 -> v2.3.2)
- actions/upload-artifact (v2.2.4 -> v2.3.1)
- actions/download-artifact (v2.0.10 -> v2.1.0)
- codecov/codecov-action (v2.0.2 -> v2.1.0)
  • Loading branch information
rsundqvist authored Feb 24, 2022
1 parent d2d2479 commit f1d3197
Show file tree
Hide file tree
Showing 5 changed files with 385 additions and 394 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2.3.4

- name: Set up Python 3.7
uses: actions/setup-python@v2.2.2
uses: actions/setup-python@v2.3.2
with:
python-version: 3.7

Expand All @@ -26,7 +26,7 @@ jobs:
- name: Run pre-commit
run: pre-commit run --all-files

- uses: peter-evans/create-pull-request@v3.10.1
- uses: peter-evans/create-pull-request@v3.12.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: chore-update-pre-commit-hooks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2.3.4

- name: Set up Python 3.7
uses: actions/setup-python@v2.2.2
uses: actions/setup-python@v2.3.2
with:
python-version: 3.7

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2.3.4

- name: Set up Python 3.7
uses: actions/setup-python@v2.2.2
uses: actions/setup-python@v2.3.2
with:
python-version: 3.7

Expand All @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v2.3.4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2.2.2
uses: actions/setup-python@v2.3.2
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -61,7 +61,7 @@ jobs:
run: nox --force-color -s safety

- name: Upload coverage data
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v2.3.1
with:
name: coverage-data
path: ".coverage.*"
Expand All @@ -73,7 +73,7 @@ jobs:
- uses: actions/checkout@v2.3.4

- name: Set up Python 3.7
uses: actions/setup-python@v2.2.2
uses: actions/setup-python@v2.3.2
with:
python-version: 3.7

Expand All @@ -85,7 +85,7 @@ jobs:
poetry config virtualenvs.in-project true
- name: Download coverage data
uses: actions/download-artifact@v2.0.10
uses: actions/download-artifact@v2.1.0
with:
name: coverage-data

Expand All @@ -95,6 +95,6 @@ jobs:
nox --force-color --session=coverage -- --fmt xml
- name: Upload coverage report
uses: codecov/codecov-action@v2.0.2
uses: codecov/codecov-action@v2.1.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
Loading

0 comments on commit f1d3197

Please sign in to comment.