This is an automated email from the ASF dual-hosted git repository.
snuyanzin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 049a6b225cf [hotfix][ci] Use correct property
`steps.docker-cache.outputs.cache-hit`
049a6b225cf is described below
commit 049a6b225cf05a58313b80169540893f729728af
Author: Sergey Nuyanzin <[email protected]>
AuthorDate: Wed Jun 24 23:07:05 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 6433674a834..c18f633a68e 100644
--- a/.github/workflows/template.flink-ci.yml
+++ b/.github/workflows/template.flink-ci.yml
@@ -253,7 +253,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
@@ -312,7 +312,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:
@@ -416,7 +416,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"
@@ -444,5 +444,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