Skip to content

Commit

Permalink
fix(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 11, 2023
1 parent cf18c51 commit 8785940
Show file tree
Hide file tree
Showing 7 changed files with 80 additions and 68 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/poetry-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
os: [ubuntu-20.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup poetry
run: pipx install poetry==${{ matrix.poetry-version }}
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
application_private_key: ${{ secrets.APPLICATION_PRIVATE_KEY }}

- name: Release please!
uses: google-github-actions/release-please-action@v3
uses: google-github-actions/release-please-action@v4
env:
APP_TOKEN: ${{ steps.get_workflow_token.outputs.token }}
with:
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand Down Expand Up @@ -46,14 +46,14 @@ repos:
- pep8-naming==0.12.1

- repo: https://github.com/asottile/pyupgrade
rev: v3.6.0
rev: v3.15.0
hooks:
- id: pyupgrade
args: [--py36-plus]
exclude: '^(install|get)-poetry.py$'

- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.1
hooks:
- id: isort
name: "isort (python)"
Expand All @@ -64,7 +64,7 @@ repos:
args: [--lines-after-imports, "-1"]

- repo: https://github.com/psf/black
rev: 23.3.0
rev: 23.11.0
hooks:
- id: black

Expand All @@ -84,6 +84,6 @@ repos:
# - types-requests

- repo: https://github.com/pre-commit/pre-commit
rev: v3.3.3
rev: v3.6.0
hooks:
- id: validate_manifest
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.4-slim as base
FROM python:3.12.1-slim as base

RUN useradd -m app
USER app
Expand Down
122 changes: 67 additions & 55 deletions poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ license = "MIT"

[tool.poetry.dependencies]
python = "^3.8"
flask = "^2.0.0"
gunicorn = "^20.0.4"
flask = "^3.0.0"
gunicorn = "^21.0.0"

[tool.poetry.group.dev.dependencies]
pytest-bdd = "^6.1.1"
pytest-bdd = "^7.0.0"
pytest-xdist = "^3.3.1"
pytest-cov = "^4.1.0"
pytest = "^7.0.0"
Expand Down

0 comments on commit 8785940

Please sign in to comment.