avoid docker w/ burnettk

This commit is contained in:
jasquat 2024-08-14 16:32:45 -04:00
parent d33c5428fc
commit e0a57301aa
No known key found for this signature in database
1 changed files with 11 additions and 6 deletions

View File

@ -21,17 +21,22 @@ outputs:
sarif_report: sarif_report:
description: "The SARIF report generated by the scan." description: "The SARIF report generated by the scan."
runs: # runs:
using: "docker" # using: "docker"
image: "python:3.12" # image: "python:3.12"
args: # args:
- "python" # - "python"
- "/wait-for-ecr-scan-and-get-sarif/main.py" # - "/wait-for-ecr-scan-and-get-sarif/main.py"
steps: steps:
- name: Check out the repository - name: Check out the repository
uses: actions/checkout@v2 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 - name: Install dependencies
run: | 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