This is an automated email from the ASF dual-hosted git repository.
snuyanzin pushed a commit to branch release-2.2
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-2.2 by this push:
new e5f7b6cbd5f [hotfix][ci] Use correct property
`steps.docker-cache.outputs.cache-hit`
e5f7b6cbd5f is described below
commit e5f7b6cbd5f5997b8d0a32276499076816802c5b
Author: Sergey Nuyanzin <[email protected]>
AuthorDate: Tue Jul 7 10:19:44 2026 +0200
[hotfix][ci] Use correct property `steps.docker-cache.outputs.cache-hit`
---
.github/workflows/template.flink-ci.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/template.flink-ci.yml
b/.github/workflows/template.flink-ci.yml
index ac84c53f7cb..73885ee5eb3 100644
--- a/.github/workflows/template.flink-ci.yml
+++ b/.github/workflows/template.flink-ci.yml
@@ -243,7 +243,7 @@ jobs:
restore-keys: ${{ matrix.module }}-docker-${{ runner.os }}
- name: "Load Docker images if not present in cache, yet"
- if: ${{ !cancelled() && !steps.docker-cache.cache.hit }}
+ if: ${{ !cancelled() && steps.docker-cache.outputs.cache-hit != 'true'
}}
working-directory: ${{ env.CONTAINER_LOCAL_WORKING_DIR }}
run: ./tools/azure-pipelines/cache_docker_images.sh load
@@ -302,7 +302,7 @@ jobs:
- name: "Save Docker images to cache"
working-directory: ${{ env.CONTAINER_LOCAL_WORKING_DIR }}
- if: ${{ !cancelled() && (failure() || !steps.docker-cache.cache.hit) }}
+ if: ${{ !cancelled() && (failure() ||
steps.docker-cache.outputs.cache-hit != 'true') }}
run: ./tools/azure-pipelines/cache_docker_images.sh save
e2e:
@@ -399,7 +399,7 @@ jobs:
key: e2e-${{ matrix.group }}-docker-${{ runner.os }}-${{
hashFiles('**/cache_docker_images.sh',
'**/flink-test-utils-parent/**/DockerImageVersions.java') }}
- name: "Load Docker images if not present in Cache, yet"
- if: ${{ !cancelled() && !steps.docker-cache.cache.hit }}
+ if: ${{ !cancelled() && steps.docker-cache.outputs.cache-hit != 'true'
}}
run: ./tools/azure-pipelines/cache_docker_images.sh load
- name: "Build Flink"
@@ -427,5 +427,5 @@ jobs:
path: ${{ steps.test-run.outputs.debug-files-output-dir }}
- name: "Save Docker images to Cache"
- if: ${{ !cancelled() && (failure() || !steps.docker-cache.cache.hit) }}
+ if: ${{ !cancelled() && (failure() ||
steps.docker-cache.outputs.cache-hit != 'true') }}
run: ./tools/azure-pipelines/cache_docker_images.sh save