From 1c792150b35a0927092a5c9d6dc5f5820f974d86 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Fri, 14 Feb 2025 07:25:27 +0000 Subject: [PATCH] Fix workflow syntax --- .github/workflows/align-versions.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/align-versions.yml b/.github/workflows/align-versions.yml index 890182939..2ded34062 100644 --- a/.github/workflows/align-versions.yml +++ b/.github/workflows/align-versions.yml @@ -21,12 +21,13 @@ jobs: strategy: fail-fast: false matrix: - - script: scripts/ruff_version.py - name: Ruff - - script: scripts/node_version.py - name: Node + job: + - script: scripts/ruff_version.py + name: Ruff + - script: scripts/node_version.py + name: Node - name: "${{ matrix.name }} versions" + name: "${{ matrix.job.name }} versions" steps: - name: Checkout with token uses: actions/checkout@v4 @@ -43,7 +44,7 @@ jobs: - uses: astral-sh/setup-uv@v5 - - run: uv run ${{ matrix.script }} + - run: uv run ${{ matrix.job.script }} - uses: stefanzweifel/git-auto-commit-action@v5 with: