Skip to content

Commit 219e816

Browse files
committed
ci: fix validate workflow
1 parent ae03661 commit 219e816

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/validate.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
prepare:
1919
runs-on: ubuntu-latest
2020
outputs:
21-
targets: ${{ steps.generate.outputs.targets }}
21+
matrix: ${{ steps.generate.outputs.matrix }}
2222
steps:
2323
-
2424
name: Checkout
2525
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2626
-
27-
name: List targets
27+
name: Generate matrix
2828
id: generate
29-
uses: docker/bake-action/subaction/list-targets@a66e1c87e2eca0503c343edf1d208c716d54b8a8 # v7.1.0
29+
uses: docker/bake-action/subaction/matrix@a66e1c87e2eca0503c343edf1d208c716d54b8a8 # v7.1.0
3030
with:
3131
target: validate
3232

@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix:
40-
target: ${{ fromJson(needs.prepare.outputs.targets) }}
40+
include: ${{ fromJson(needs.prepare.outputs.matrix) }}
4141
steps:
4242
-
4343
name: Validate

0 commit comments

Comments
 (0)