Skip to content

Commit e9ecfaf

Browse files
authored
fix: use ${GITHUB_ACTION_PATH} when referencing external files (#7)
1 parent ef8f19e commit e9ecfaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runs:
2929
3030
case ${{ inputs.transformation }} in
3131
'gtest-to-generic-execution')
32-
{ echo '<testExecutions version="1">'; xsltproc converters/gtest-to-generic-execution.xslt ${{ inputs.input }}; echo '</testExecutions>'; } | tee ${{ inputs.output }} > /dev/null
32+
{ echo '<testExecutions version="1">'; xsltproc ${GITHUB_ACTION_PATH}/converters/gtest-to-generic-execution.xslt ${{ inputs.input }}; echo '</testExecutions>'; } | tee ${{ inputs.output }} > /dev/null
3333
;;
3434
'mutation-test-to-generic-issue')
3535
;;

0 commit comments

Comments
 (0)