From 3cfc62c01cc1019725a5110611aacb3a137aa813 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 10 Mar 2024 21:52:22 +0000 Subject: [PATCH] Update all non-major dependencies --- .github/workflows/pre-commit-autoupdate.yml | 6 +++--- .github/workflows/release.yml | 8 ++++---- .github/workflows/test.yml | 10 +++++----- pyproject.toml | 10 +++++----- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/pre-commit-autoupdate.yml b/.github/workflows/pre-commit-autoupdate.yml index 21c3bae..42de3c3 100644 --- a/.github/workflows/pre-commit-autoupdate.yml +++ b/.github/workflows/pre-commit-autoupdate.yml @@ -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 @@ -26,7 +26,7 @@ jobs: - name: Run pre-commit run: pre-commit run --all-files - - uses: peter-evans/create-pull-request@v5.0.0 + - uses: peter-evans/create-pull-request@v5.0.2 with: token: ${{ secrets.GITHUB_TOKEN }} branch: chore-update-pre-commit-hooks diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 257a2b1..9eaddc6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -24,7 +24,7 @@ jobs: - name: Get Changelog Entry id: changelog_reader - uses: mindsers/changelog-reader-action@v2.2.2 + uses: mindsers/changelog-reader-action@v2.2.3 with: version: ${{ steps.tag_name.outputs.current_version }} path: ./CHANGELOG.md @@ -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 }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7901e81..f5e5797 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }} @@ -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 @@ -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/ diff --git a/pyproject.toml b/pyproject.toml index 1e81431..177fcd5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "*" } @@ -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"} @@ -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]