Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Mar 18, 2023
1 parent bf06f0d commit bbb723c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pre-commit-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
name: autoupdate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.4.0

- name: Set up Python 3.7
uses: actions/setup-python@v4.3.1
uses: actions/setup-python@v4.5.0
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/[email protected].3
- uses: peter-evans/[email protected].4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: chore-update-pre-commit-hooks
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Create Github Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.4.0

- name: Get version from tag
id: tag_name
Expand Down Expand Up @@ -52,9 +52,9 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.4.0

- uses: actions/setup-python@v4.3.1
- uses: actions/setup-python@v4.5.0
with:
python-version: ${{ matrix.python-versions }}

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3.2.0
- uses: actions/setup-python@v4.3.1
- uses: actions/checkout@v3.4.0
- uses: actions/setup-python@v4.5.0
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -88,8 +88,8 @@ jobs:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.2.0
- uses: actions/setup-python@v4.3.1
- uses: actions/checkout@v3.4.0
- uses: actions/setup-python@v4.5.0
with:
python-version: 3.9

Expand All @@ -109,7 +109,7 @@ jobs:
poetry build
- name: publish to Test PyPI
uses: pypa/gh-action-pypi-publish@v1.6.4
uses: pypa/gh-action-pypi-publish@v1.8.1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ optional = true
[tool.poetry.group.dev.dependencies]
black = { version = "*" }
bump2version = "^1.0"
fastapi = {version = "^0.88"}
fastapi = {version = "^0.95.0"}
flake8 = { version = "*" }
httpcore = "^0.16.2"
httpcore = "^0.17.0"
httpx = "^0.23.1"
invoke = "^1.7"
isort = { version = "*" }
Expand All @@ -68,7 +68,7 @@ safety = "^2.3"
toml = { version = "*" }
tox = { version = "*" }
twine = { version = "*" }
uvicorn = "^0.20"
uvicorn = "^0.21.0"
virtualenv = { version = "^20.16" }
yamllint = "*"
pylint = {version = "^2.15.5", python = "^3.9"}
Expand Down

0 comments on commit bbb723c

Please sign in to comment.