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: