This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 677660ed056 Increase cache epoch to ensure cache on main is evicted
(#55933)
677660ed056 is described below
commit 677660ed056a7cfefd84e4d3beec05e2d95d6c75
Author: Jens Scheffler <[email protected]>
AuthorDate: Mon Sep 22 23:15:02 2025 +0200
Increase cache epoch to ensure cache on main is evicted (#55933)
---
Dockerfile | 2 +-
Dockerfile.ci | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index 0e04d962961..6c21338814d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1878,7 +1878,7 @@ COPY --from=scripts install_from_docker_context_files.sh
install_airflow_when_bu
# an incorrect architecture.
ARG TARGETARCH
# Value to be able to easily change cache id and therefore use a bare new cache
-ARG DEPENDENCY_CACHE_EPOCH="10"
+ARG DEPENDENCY_CACHE_EPOCH="11"
# hadolint ignore=SC2086, SC2010, DL3042
RUN
--mount=type=cache,id=prod-$TARGETARCH-$DEPENDENCY_CACHE_EPOCH,target=/tmp/.cache/,uid=${AIRFLOW_UID}
\
diff --git a/Dockerfile.ci b/Dockerfile.ci
index 088a0aa3a90..e0e9dd8fe52 100644
--- a/Dockerfile.ci
+++ b/Dockerfile.ci
@@ -1692,7 +1692,7 @@ ENV
PATH="/usr/python/bin:/root/.local/bin:/root/.cargo/bin:${PATH}"
# an incorrect architecture.
ARG TARGETARCH
# Value to be able to easily change cache id and therefore use a bare new cache
-ARG DEPENDENCY_CACHE_EPOCH="1"
+ARG DEPENDENCY_CACHE_EPOCH="2"
# Install useful command line tools in their own virtualenv so that they do
not clash with
# dependencies installed in Airflow also reinstall PIP and UV to make sure
they are installed