{"id":28832094,"url":"https://github.com/draios/infra-action-sysdig-scan","last_synced_at":"2026-04-27T18:32:20.318Z","repository":{"id":67234398,"uuid":"577412739","full_name":"draios/infra-action-sysdig-scan","owner":"draios","description":"Github action to use Sysdig scanner","archived":false,"fork":false,"pushed_at":"2024-04-22T10:20:40.000Z","size":22,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":8,"default_branch":"main","last_synced_at":"2024-04-22T11:32:55.648Z","etag":null,"topics":["action","github","infra","scanner","sysdig"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/draios.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2022-12-12T17:20:12.000Z","updated_at":"2024-04-22T10:20:18.000Z","dependencies_parsed_at":"2024-04-19T21:29:37.706Z","dependency_job_id":"fd3138e9-8bd6-424a-81cc-16a0b73bd640","html_url":"https://github.com/draios/infra-action-sysdig-scan","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/draios/infra-action-sysdig-scan","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/draios%2Finfra-action-sysdig-scan","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/draios%2Finfra-action-sysdig-scan/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/draios%2Finfra-action-sysdig-scan/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/draios%2Finfra-action-sysdig-scan/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/draios","download_url":"https://codeload.github.com/draios/infra-action-sysdig-scan/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/draios%2Finfra-action-sysdig-scan/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260705941,"owners_count":23049498,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["action","github","infra","scanner","sysdig"],"created_at":"2025-06-19T07:14:17.946Z","updated_at":"2026-04-27T18:32:20.313Z","avatar_url":"https://github.com/draios.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# infra-action-sysdig-scan\n\nGitHub Action to scan container images with Sysdig scan\n\n## Inputs\n\n### Required\n\n- `image_tag`: The tag of the local image to scan. Example: \"sysdiglabs/dummy-vuln-app:latest\"\n- `sysdig-secure-token`: API token for Sysdig Scanning auth.\n- `scan-type`: \"Type of scan to perform. Possible values: \"legacy\",\"new\", \"both\". Default: \"legacy\"\n- `sysdig-secure-url`: Sysdig Secure URL. Example: https://secure-sysdig.svc.cluster.local\n\n## Optional\n\n- `sysdig-skip-tls`: Skip TLS verification when calling secure endpoints.\n- `severity`: \"Severity level to fail the build\"\n- `input-type`: If specified, where should we scan the image from.\n- `policy-list`: Comma separated list of policies to include\n\n## Ignore failed scans\n\nYou can ignore **failed** Sysdig scans by creating a docker label named `com.sysdig.ignore-failed-scan`. If the label isn't present the action will fail.\n\n## Example workflow\n\nPerform all checks on pull requests\n\n```yaml\nname: Scan image\non: [pull_request]\n\njobs:\n\n  build:\n    runs-on: self-hosted\n    steps:\n    - uses: actions/checkout@v2\n    - uses: draios/infra-action-buildnpush@v1\n      with:\n        push_to_quay: true\n        image_name: \"redis-6\"\n        image_description: \"sysdig image for redis-6\"\n        context_path: \"containers/redis\"\n        dockerfile: \"Dockerfile\"\n        dry_run: ${{ ! ((github.event_name == 'push' \u0026\u0026 github.ref == 'refs/heads/main') || (github.event_name == 'workflow_dispatch' \u0026\u0026 github.event.inputs.dry_run == 'false')) }}\n        artifactory_username: ${{ secrets.ARTIFACTORY_USERNAME }}\n        artifactory_password: ${{ secrets.ARTIFACTORY_PASSWORD }}\n        quay_username: ${{ secrets.QUAY_USERNAME }}\n        quay_password: ${{ secrets.QUAY_PASSWORD }}\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n\n  scan:\n    runs-on: self-hosted\n    needs: build\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n      - name: Scan image\n        uses: draios/infra-action-sysdig-scan@v1\n        with:\n          image-tag: \"${{ needs.build.outputs.names }}\"\n          sysdig-secure-token: ${{ secrets.SYSDIG_SECURE_TOKEN }}\n          scan-type: \"legacy\"\n          severity: \"high\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdraios%2Finfra-action-sysdig-scan","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdraios%2Finfra-action-sysdig-scan","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdraios%2Finfra-action-sysdig-scan/lists"}