From f464092bc2ce83cc3f64b62c625b5f139d1048e3 Mon Sep 17 00:00:00 2001 From: Jory Irving Date: Fri, 10 Jan 2025 08:56:08 -0700 Subject: [PATCH] fix: cleanup workflow --- .github/workflows/pre-pull-images.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pre-pull-images.yaml b/.github/workflows/pre-pull-images.yaml index 7027e583f..2e6360565 100644 --- a/.github/workflows/pre-pull-images.yaml +++ b/.github/workflows/pre-pull-images.yaml @@ -73,7 +73,6 @@ jobs: paths: ${{ fromJSON(needs.changed-clusters.outputs.matrix) }} fail-fast: false outputs: - paths: ${{ needs.changed-clusters.outputs.matrix }} default: ${{ steps.extract-images.outputs.default }} pull: ${{ steps.extract-images.outputs.pull }} steps: @@ -142,11 +141,11 @@ jobs: if: ${{ needs.compare-images.outputs.images != '[]' }} name: Pre-pull Images runs-on: ["gha-runner-scale-set"] - needs: ["compare-images"] + needs: ["compare-images", "changed-clusters"] strategy: matrix: images: ${{ fromJSON(needs.compare-images.outputs.images) }} - paths: ${{ fromJSON(needs.extract-images.outputs.paths) }} + paths: ${{ fromJSON(needs.changed-clusters.outputs.matrix) }} max-parallel: 4 fail-fast: false steps: