avoid docker w/ burnettk
This commit is contained in:
parent
d33c5428fc
commit
e0a57301aa
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue