diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 0a94931..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,53 +0,0 @@ -name: "ECR Scan and Retrieve SARIF Report" - -on: - push: - branches: - - main - pull_request: - workflow_dispatch: - -jobs: - ecr-scan: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - # - name: Run ECR Scan and Get SARIF Report - # uses: sartography/github-actions-library/wait-for-ecr-scan-and-get-sarif@main - # with: - # repository_name: "infr/testcloud2202" - # image_tag: "main" - # aws_region: "us-east-2" - # output_file: "report.sarif" - - - name: Set up Python 3.12 - uses: actions/setup-python@v5.1.1 - with: - python-version: 3.12 - - - name: Install dependencies - shell: bash - run: | - pip install -r wait-for-ecr-scan-and-get-sarif/requirements.txt - - - name: Run the Python script to convert ECR scan to SARIF - shell: bash - run: | - python wait-for-ecr-scan-and-get-sarif/pylib/aws_scan_findings_to_sarif.py \ - --input_file wait-for-ecr-scan-and-get-sarif/tests/ecr-scan-result-ubuntu.json \ - --output_file report.sarif - - - name: Upload SARIF report as artifact - uses: actions/upload-artifact@v4 - with: - name: sarif-report - path: report.sarif - - - name: Upload SARIF file - uses: github/codeql-action/upload-sarif@v3 - with: - sarif_file: report.sarif - category: security