diff --git a/.github/actions/test_setup/action.yml b/.github/actions/test-setup/action.yml similarity index 100% rename from .github/actions/test_setup/action.yml rename to .github/actions/test-setup/action.yml diff --git a/.github/workflows/clang_tidy.yaml b/.github/workflows/clang_tidy.yaml index e225ebaae0d2..4a2871145920 100644 --- a/.github/workflows/clang_tidy.yaml +++ b/.github/workflows/clang_tidy.yaml @@ -48,8 +48,8 @@ jobs: - name: Checkout branch uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - id: test_setup - uses: ./.github/actions/test_setup + - id: test-setup + uses: ./.github/actions/test-setup with: matrix_runner: 'ubuntu-22.04' base_sha: @@ -65,7 +65,7 @@ jobs: # # The `-k` flag is used to print all clang-tidy errors. - name: clang-tidy - if: steps.test_setup.outputs.has_code == 'true' + if: steps.test-setup.outputs.has_code == 'true' env: TARGETS_FILE: ${{ runner.temp }}/targets run: | @@ -76,5 +76,5 @@ jobs: # See "Disk space before build". - name: Disk space after build - if: steps.test_setup.outputs.has_code == 'true' + if: steps.test-setup.outputs.has_code == 'true' run: df -h diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 5cea09a8a5dc..c150f1f3ec89 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -54,7 +54,7 @@ jobs: - name: Checkout branch uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: ./.github/actions/test_setup + - uses: ./.github/actions/test-setup with: matrix_runner: ${{ matrix.runner }} base_sha: @@ -67,7 +67,7 @@ jobs: # Build and run just the tests impacted by the PR or merge group. - name: Test (${{ inputs.matrix_build_mode }}) - if: steps.test_setup.outputs.has_code == 'true' + if: steps.test-setup.outputs.has_code == 'true' shell: bash env: # 'libtool_check_unique failed to generate' workaround. @@ -85,5 +85,5 @@ jobs: # See "Disk space before build". - name: Disk space after build - if: steps.test_setup.outputs.has_code == 'true' + if: steps.test-setup.outputs.has_code == 'true' run: df -h