From d23eb420caee7957bb214145279cd52dd7b6eab9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Oct 2025 00:27:29 +0000 Subject: [PATCH 1/2] Bump python in the risk-analyzer-service group Bumps the risk-analyzer-service group with 1 update: python. Updates `python` from 3.13-alpine to 3.14-alpine --- updated-dependencies: - dependency-name: python dependency-version: 3.14-alpine dependency-type: direct:production dependency-group: risk-analyzer-service ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 281b9b8..ba99dd7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13-alpine +FROM python:3.14-alpine ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 From bde49c1ff95d2a0c6ce9cba54c2faf3e4b9ce445 Mon Sep 17 00:00:00 2001 From: jaldana Date: Wed, 8 Oct 2025 08:49:09 +0200 Subject: [PATCH 2/2] Add Python 3.14 to CI pipeline --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f64b283..7e5eb20 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: needs: lint strategy: matrix: - python-version: ["3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }}