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 10, 2024
1 parent 28faec5 commit 3cfc62c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 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.6.0

- name: Set up Python 3.7
uses: actions/setup-python@v4.6.0
uses: actions/setup-python@v4.8.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].0
- uses: peter-evans/[email protected].2
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: chore-update-pre-commit-hooks
Expand Down
8 changes: 4 additions & 4 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.6.0

- name: Get version from tag
id: tag_name
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Get Changelog Entry
id: changelog_reader
uses: mindsers/[email protected].2
uses: mindsers/[email protected].3
with:
version: ${{ steps.tag_name.outputs.current_version }}
path: ./CHANGELOG.md
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.6.0

- uses: actions/setup-python@v4.6.0
- uses: actions/setup-python@v4.8.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.6.0
- uses: actions/checkout@v3.6.0
- uses: actions/setup-python@v4.8.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.6.0
- uses: actions/checkout@v3.6.0
- uses: actions/setup-python@v4.8.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.14
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ optional = true
[tool.poetry.group.dev.dependencies]
black = { version = "*" }
bump2version = "^1.0"
fastapi = {version = "^0.88"}
fastapi = {version = "^0.110.0"}
flake8 = { version = "*" }
httpcore = "^0.16.2"
httpx = "^0.23.1"
httpcore = "^0.18.0"
httpx = "^0.27.0"
invoke = "^2.0.0"
isort = { version = "*" }
mkapi = { version = "*" }
Expand All @@ -68,7 +68,7 @@ safety = "^2.3"
toml = { version = "*" }
tox = { version = "*" }
twine = { version = "*" }
uvicorn = "^0.20"
uvicorn = "^0.28.0"
virtualenv = { version = "^20.16" }
yamllint = "*"
pylint = {version = "^2.15.5", python = "^3.9"}
Expand All @@ -81,7 +81,7 @@ pymdown-extensions = "^9.7"
mkdocs = "^1.4.1"
mkdocs-include-markdown-plugin = { version = "^4.0.0", python = "3.9" }
mkapi = "^1.0.14"
mkdocs-autorefs = "^0.4.1"
mkdocs-autorefs = "^0.5.0"


[tool.poetry.group.test.dependencies]
Expand Down

0 comments on commit 3cfc62c

Please sign in to comment.