From 9f7f68036d73af7d8aeeb32be237bfdef31412d5 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sat, 20 Sep 2025 04:43:22 +0200 Subject: [PATCH] GH Actions: ensure all steps have a name --- .github/workflows/release.yml | 6 ++++-- .github/workflows/test.yml | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 488aa96..690f597 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -93,7 +93,8 @@ jobs: - name: Checkout code uses: actions/checkout@v5 - - uses: actions/download-artifact@v5 + - name: Download PHAR file + uses: actions/download-artifact@v5 with: name: parallel-lint-phar @@ -115,7 +116,8 @@ jobs: - verify steps: - - uses: actions/download-artifact@v5 + - name: Download PHAR file + uses: actions/download-artifact@v5 with: name: parallel-lint-phar diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3f2843c..57b8b45 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -165,7 +165,8 @@ jobs: if: ${{ startsWith( steps.phpunit_version.outputs.VERSION, '10.' ) }} run: composer test10 - - uses: actions/download-artifact@v5 + - name: Download PHAR file + uses: actions/download-artifact@v5 with: name: parallel-lint-phar