diff --git a/Dockerfile b/Dockerfile
index 55747e61c05..14021a2ce51 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -79,7 +79,7 @@ FROM alpine/terragrunt:${TERRAFORM_TERRAGRUNT_VERSION} AS terragrunt
# Build wheel for megalinter python package
##################
FROM ghcr.io/astral-sh/uv:0.5.7 AS uv
-FROM python:3.12.8-alpine3.20 AS build-ml-core
+FROM python:3.13.1-alpine3.20 AS build-ml-core
WORKDIR /
COPY --from=uv /uv /uvx /bin/
# Install dependencies
@@ -96,7 +96,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
##################
# Get base image #
##################
-FROM python:3.12.8-alpine3.20
+FROM python:3.13.1-alpine3.20
#############################################################################################
## @generated by .automation/build.py using descriptor files, please do not update manually ##
diff --git a/Dockerfile-quick b/Dockerfile-quick
index 551af36e376..37cc88cbb55 100644
--- a/Dockerfile-quick
+++ b/Dockerfile-quick
@@ -15,7 +15,7 @@ FROM $MEGALINTER_BASE_IMAGE as base
# Build wheel for megalinter python package
##################
FROM ghcr.io/astral-sh/uv:0.5.7 AS uv
-FROM python:3.12.8-alpine3.20 AS build-ml-core
+FROM python:3.13.1-alpine3.20 AS build-ml-core
WORKDIR /
COPY pyproject.toml .
COPY --from=uv /uv /bin/uv
diff --git a/docs/descriptors/xml_xmllint.md b/docs/descriptors/xml_xmllint.md
index c009fa31af4..aa39fee0864 100644
--- a/docs/descriptors/xml_xmllint.md
+++ b/docs/descriptors/xml_xmllint.md
@@ -25,7 +25,7 @@ To apply file formatting you must set `XML_XMLLINT_CLI_LINT_MODE: file` and `XML
| Variable | Description | Default value |
|-----------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
| XML_XMLLINT_AUTOFORMAT | If set to `true`, it will reformat and reindent the output | `false` |
-| XML_XMLLINT_INDENT | The number of indentation spaces when `XML_XMLLINT_AUTOFORMAT` is `true` | ` ` |
+| XML_XMLLINT_INDENT | The number of indentation spaces when `XML_XMLLINT_AUTOFORMAT` is `true` | `` |
| XML_XMLLINT_ARGUMENTS | User custom arguments to add in linter CLI call
Ex: `-s --foo "bar"` | |
| XML_XMLLINT_COMMAND_REMOVE_ARGUMENTS | User custom arguments to remove from command line before calling the linter
Ex: `-s --foo "bar"` | |
| XML_XMLLINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `(src\|lib)` | Include every file |