diff --git a/.github/workflows/pre-commit-autoupdate.yml b/.github/workflows/pre-commit-autoupdate.yml index 00f4b9d..d027717 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.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 @@ -26,7 +26,7 @@ jobs: - name: Run pre-commit run: pre-commit run --all-files - - uses: peter-evans/create-pull-request@v4.2.3 + - uses: peter-evans/create-pull-request@v4.2.4 with: token: ${{ secrets.GITHUB_TOKEN }} branch: chore-update-pre-commit-hooks diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 99cd7e4..b6f2ac4 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.4.0 - name: Get version from tag id: tag_name @@ -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 }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8546e4c..575c1b9 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.3.1 + - uses: actions/checkout@v3.4.0 + - uses: actions/setup-python@v4.5.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.3.1 + - uses: actions/checkout@v3.4.0 + - uses: actions/setup-python@v4.5.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.1 with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository_url: https://test.pypi.org/legacy/ diff --git a/pyproject.toml b/pyproject.toml index 5464e32..f8602e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "*" } @@ -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"}