From 60f09d2fa891e1cf82c95f1da9f0e304b20928ac Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Tue, 3 Feb 2026 14:29:27 +0100 Subject: [PATCH 1/2] ci: fix missing dependency on bin-image job Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- .github/workflows/merge.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 64cb1e834e..94108e51c3 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -84,6 +84,8 @@ jobs: bin-image: uses: docker/github-builder/.github/workflows/bake.yml@v1 + needs: + - bin-image-prepare permissions: contents: read # same as global permission id-token: write # for signing attestation(s) with GitHub OIDC Token From d2293e59bbd537804db39f315433c5fb1466b560 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Tue, 3 Feb 2026 15:00:49 +0100 Subject: [PATCH 2/2] ci: use bin-image edge tag directly for e2e tests Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- .github/workflows/merge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 94108e51c3..1e0d37fd24 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -136,6 +136,6 @@ jobs: workflow_id: 'compose-edge-integration.yml', ref: 'main', inputs: { - "image-tag": "${{ needs.bin-image.outputs.digest }}" + "image-tag": "${{ env.REPO_SLUG }}:edge" } })