diff --git a/wait-for-ecr-scan-and-get-sarif/action.yml b/wait-for-ecr-scan-and-get-sarif/action.yml index 4ddad10..27c3bcb 100644 --- a/wait-for-ecr-scan-and-get-sarif/action.yml +++ b/wait-for-ecr-scan-and-get-sarif/action.yml @@ -21,17 +21,22 @@ outputs: sarif_report: description: "The SARIF report generated by the scan." -runs: - using: "docker" - image: "python:3.12" - args: - - "python" - - "/wait-for-ecr-scan-and-get-sarif/main.py" +# runs: +# using: "docker" +# image: "python:3.12" +# args: +# - "python" +# - "/wait-for-ecr-scan-and-get-sarif/main.py" steps: - name: Check out the repository uses: actions/checkout@v2 + - name: Set up Python 3.12 + uses: actions/setup-python@v5.1.1 + with: + python-version: 3.12 + - name: Install dependencies run: | pip install -r /wait-for-ecr-scan-and-get-sarif/requirements.txt