From ac54e9c929a9294c6956e541bae62e059a91312f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Oct 2025 05:22:13 +0000 Subject: [PATCH] feat(Dependencies): Update dependency python | datasource | package | from | to | | --------------- | ----------------------- | ------ | ------ | | github-releases | actions/python-versions | 3.13.8 | 3.14.0 | | docker | python | 3.13 | 3.14 | --- .github/workflows/build_image.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_image.yml b/.github/workflows/build_image.yml index 95e9e5e..573d207 100644 --- a/.github/workflows/build_image.yml +++ b/.github/workflows/build_image.yml @@ -11,7 +11,7 @@ jobs: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - uses: actions/setup-python@v6 with: - python-version: '3.13' # Version range or exact version of a Python version to use, using SemVer's version range syntax + python-version: '3.14' # Version range or exact version of a Python version to use, using SemVer's version range syntax - uses: actions/checkout@v5.0.0 - name: Build with retry uses: Wandalen/wretry.action@v3.8.0 diff --git a/Dockerfile b/Dockerfile index 74e8cbe..b839f1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use a stable Python base image (Debian 12 based) -FROM python:3.13-slim +FROM python:3.14-slim # Set environment variables ENV WEBHOOK_URL_PREFIX="wiki/hooks"