Skip to content

Commit a47ebaa

Browse files
committed
Change the id of the step
1 parent 6a5fd26 commit a47ebaa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/test_analyze_project/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
shell: bash
2424
- name: Analyze project
2525
uses: ni/python-actions/analyze-project@36f9be52791272a313ccda38ac90742941770e6c
26-
id: analyze-project
26+
id: analyze-project-subaction
2727
continue-on-error: ${{ inputs.expect-failure == 'true' }}
2828
with:
2929
project-directory: ${{ inputs.project-directory }}
@@ -32,7 +32,7 @@ runs:
3232
echo "Beginning check expected outcome"
3333
if [[ "${{ inputs.expect-failure }}" == "true" ]]; then
3434
echo "Expecting failures"
35-
if [[ "${{ steps.analyze-project.outcome }}" != "failure" ]]; then
35+
if [[ "${{ steps.analyze-project-subaction.outcome }}" != "failure" ]]; then
3636
echo "::error title=Test Failure::Expected analyze-project to fail, but it succeeded."
3737
exit 1
3838
else

0 commit comments

Comments
 (0)