From 858668fac65d855e34db02cd5d1d34c5bda11be9 Mon Sep 17 00:00:00 2001 From: jasquat Date: Wed, 14 Aug 2024 16:48:40 -0400 Subject: [PATCH] use cwd for locations w/ burnettk --- wait-for-ecr-scan-and-get-sarif/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wait-for-ecr-scan-and-get-sarif/action.yml b/wait-for-ecr-scan-and-get-sarif/action.yml index e62e2bb..2e91b87 100644 --- a/wait-for-ecr-scan-and-get-sarif/action.yml +++ b/wait-for-ecr-scan-and-get-sarif/action.yml @@ -38,12 +38,12 @@ runs: - name: Install dependencies shell: bash run: | - pip install -r /wait-for-ecr-scan-and-get-sarif/requirements.txt + pip install -r wait-for-ecr-scan-and-get-sarif/requirements.txt - name: Run the Python script to wait for ECR scan and get SARIF shell: bash run: | - python /wait-for-ecr-scan-and-get-sarif/main.py \ + python wait-for-ecr-scan-and-get-sarif/main.py \ --repository_name ${{ inputs.repository_name }} \ --image_tag ${{ inputs.image_tag }} \ --aws_region ${{ inputs.aws_region }} \