From d28ca446dbf2c7cd6de6d6a602d54dc0ce05505b Mon Sep 17 00:00:00 2001 From: sebastianMindee <130448732+sebastianMindee@users.noreply.github.com> Date: Mon, 15 Jun 2026 10:09:59 +0200 Subject: [PATCH 1/2] :arrow_up: bump dependencies --- .github/workflows/_test-regressions.yml | 6 +++--- .pre-commit-config.yaml | 2 +- pyproject.toml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/_test-regressions.yml b/.github/workflows/_test-regressions.yml index fcbc2166..7c10cf07 100644 --- a/.github/workflows/_test-regressions.yml +++ b/.github/workflows/_test-regressions.yml @@ -21,12 +21,12 @@ jobs: - "3.14" runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: submodules: recursive - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} @@ -49,7 +49,7 @@ jobs: pytest --cov mindee -m regression - name: Notify Slack Action on Failure - uses: ravsamhq/notify-slack-action@2.3.0 + uses: ravsamhq/notify-slack-action@2.5.0 if: ${{ always() && github.ref_name == 'main' }} with: status: ${{ job.status }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index facc367c..27831688 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,7 +12,7 @@ repos: - id: betterleaks - repo: https://github.com/PyCQA/pylint - rev: v4.0.5 + rev: v4.0.6 hooks: - id: pylint name: pylint diff --git a/pyproject.toml b/pyproject.toml index c623aa8f..b44ed009 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,13 +42,13 @@ Changelog = "https://github.com/mindee/mindee-api-python/blob/main/CHANGELOG.md" [project.optional-dependencies] lint = [ - "pylint==4.0.5", + "pylint==4.0.6", "pre-commit~=4.6.0", "pip-audit>=2.10.0", ] test = [ "toml~=0.10.2", - "pytest~=9.0.3", + "pytest~=9.0.3,<9.2.0", "pytest-cov~=7.1.0", "respx~=0.23.1" ] From 139d8956f28c05e75bfae0c7cf465560ca47a899 Mon Sep 17 00:00:00 2001 From: sebastianMindee <130448732+sebastianMindee@users.noreply.github.com> Date: Mon, 15 Jun 2026 10:22:27 +0200 Subject: [PATCH 2/2] bump pre-commit --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 27831688..00f10042 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,13 +1,13 @@ repos: - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: v0.15.16 + rev: v0.15.17 hooks: - id: ruff-check args: [ --fix, --exit-non-zero-on-fix] - id: ruff-format - repo: https://github.com/betterleaks/betterleaks - rev: v1.4.1 + rev: v1.5.0 hooks: - id: betterleaks