From 25338f6f45de0b674ad74fda8276c10de48f511f Mon Sep 17 00:00:00 2001 From: Phil Tyler Date: Fri, 25 Aug 2023 13:41:58 -0700 Subject: [PATCH] CMSP-584 action needs to use action path (#6) --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 536c46f..55cc8ae 100644 --- a/action.yml +++ b/action.yml @@ -33,8 +33,8 @@ runs: - name: Check Dependencies shell: bash run: | - ./bin/validate-dependencies-yml-schema.sh ${{ inputs.dependencies-yml }} - ./bin/dependency-check-pr.sh + ${{ github.action_path }}/bin/validate-dependencies-yml-schema.sh ${{ inputs.dependencies-yml }} + ${{ github.action_path }}/bin/dependency-check-pr.sh env: DEPENDENCIES_YML: ${{ inputs.dependencies-yml }} OUTPUT_FILE: ${{ inputs.output-file }}