From dc97387b0fd892688b715ff60ec5eeb43f5acd22 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 02:11:02 +0000 Subject: [PATCH] Bump the minor-and-patch group across 4 directories with 3 updates Bumps the minor-and-patch group with 1 update in the / directory: python. Bumps the minor-and-patch group with 1 update in the /examples/go directory: golang. Bumps the minor-and-patch group with 1 update in the /examples/php directory: php. Bumps the minor-and-patch group with 1 update in the /examples/python directory: python. Updates `python` from 3.10-slim to 3.14-slim Updates `python` from 3.10-slim to 3.14-slim Updates `golang` from 1.21-alpine to 1.26-alpine Updates `php` from 8.2-cli to 8.5-cli Updates `python` from 3.10-slim to 3.14-slim Updates `python` from 3.10-slim to 3.14-slim --- updated-dependencies: - dependency-name: golang dependency-version: 1.26-alpine dependency-type: direct:production dependency-group: minor-and-patch - dependency-name: php dependency-version: 8.5-cli dependency-type: direct:production dependency-group: minor-and-patch - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production dependency-group: minor-and-patch - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- examples/go/Dockerfile | 2 +- examples/php/Dockerfile | 2 +- examples/python/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 45d9c4b..4dba82d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-slim +FROM python:3.14-slim WORKDIR /app diff --git a/examples/go/Dockerfile b/examples/go/Dockerfile index d8f9bc6..7f72582 100644 --- a/examples/go/Dockerfile +++ b/examples/go/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21-alpine +FROM golang:1.26-alpine WORKDIR /app COPY client.go . RUN go build -o client client.go diff --git a/examples/php/Dockerfile b/examples/php/Dockerfile index d41d9c4..6534ef8 100644 --- a/examples/php/Dockerfile +++ b/examples/php/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.2-cli +FROM php:8.5-cli WORKDIR /app COPY client.php . CMD ["php", "client.php"] diff --git a/examples/python/Dockerfile b/examples/python/Dockerfile index 9fda2b0..4a6b5ab 100644 --- a/examples/python/Dockerfile +++ b/examples/python/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-slim +FROM python:3.14-slim WORKDIR /app COPY client.py . RUN pip install requests