{"id":34930103,"url":"https://github.com/seqra/seqra-action","last_synced_at":"2026-02-07T01:24:12.574Z","repository":{"id":317677419,"uuid":"1047651051","full_name":"seqra/seqra-action","owner":"seqra","description":"GitHub Action for automated security scanning","archived":false,"fork":false,"pushed_at":"2026-01-21T13:44:46.000Z","size":28,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-22T01:41:45.797Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/seqra.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-30T22:41:07.000Z","updated_at":"2026-01-21T12:10:26.000Z","dependencies_parsed_at":"2025-10-02T11:41:55.731Z","dependency_job_id":null,"html_url":"https://github.com/seqra/seqra-action","commit_stats":null,"previous_names":["seqra/seqra-action"],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/seqra/seqra-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seqra%2Fseqra-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seqra%2Fseqra-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seqra%2Fseqra-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seqra%2Fseqra-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seqra","download_url":"https://codeload.github.com/seqra/seqra-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seqra%2Fseqra-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28993849,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T22:01:47.507Z","status":"ssl_error","status_checked_at":"2026-02-01T21:58:37.335Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2025-12-26T15:32:10.554Z","updated_at":"2026-02-07T01:24:12.566Z","avatar_url":"https://github.com/seqra.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Seqra GitHub Action\n\nRun [Seqra](https://github.com/seqra/seqra) static analysis in your CI, generate a SARIF report, and optionally upload it to GitHub Code Scanning.\n\n\n## Usage\n\n\u003e **Note:** The action expects **Linux x86\\_64** runners.\n\n### Prerequisites\n\nSeqra analyzes compiled bytecode of your project. Before running this action, ensure your CI environment is configured to compile the project. For example:\n\n- **Java/Kotlin projects:** Set up a JDK using `actions/setup-java@v5`\n\n### Quick Start\n\n### Scan\n\n```yaml\nname: Seqra Analysis\non:\n    workflow_dispatch\n\njobs:\n  seqra:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout your repository\n        uses: actions/checkout@v6\n\n      - name: Set up JDK\n        uses: actions/setup-java@v5\n        with:\n          distribution: 'temurin'\n          java-version: '21'\n\n      - name: Run Seqra code analysis\n        uses: seqra/seqra-action@v2\n```\n\n\n### Scan and upload to GitHub code scanning alerts\n\n```yaml\nname: Seqra Analysis\non:\n    workflow_dispatch\n\n# Required for Code Scanning upload\npermissions:\n  contents: read\n  security-events: write\n\njobs:\n  seqra:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout your repository\n        uses: actions/checkout@v6\n\n      - name: Set up JDK\n        uses: actions/setup-java@v5\n        with:\n          distribution: 'temurin'\n          java-version: '21'\n\n      - name: Run Seqra code analysis\n        uses: seqra/seqra-action@v2\n        with:\n          upload-sarif: 'true'\n          artifact-name: 'sarif'\n```\n\n\n### All Inputs\n\n```yaml\nname: Seqra Analysis\non:\n    workflow_dispatch\n\n# Required for Code Scanning upload\npermissions:\n  contents: read\n  security-events: write\n\njobs:\n  seqra:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout your repository\n        uses: actions/checkout@v6\n\n      - name: Set up JDK\n        uses: actions/setup-java@v5\n        with:\n          distribution: 'temurin'\n          java-version: '21'\n\n      - name: Run Seqra code analysis\n        uses: seqra/seqra-action@v2\n        with:\n            # Relative path under $GITHUB_WORKSPACE to the root of the analyzed project\n            project-root: '.'\n\n            # Should seqra-action upload sarif to GitHub Code Security\n            upload-sarif: 'false'\n\n            # Tag of seqra release\n            seqra-version: 'v2.3.0'\n\n            # Paths to custom rules directories (comma-separated)\n            # By default it is empty, so seqra will use builtin rules\n            rules-path: 'security/myrules'\n\n            # Name of uploaded artifact\n            artifact-name: 'sarif'\n\n            # Log level\n            verbosity: 'info'\n\n            # Scan timeout\n            timeout: '15m'\n\n            # Severity levels to report (comma-separated)\n            # Valid values: note, warning, error\n            severity: 'warning,error'\n```\n\n\n## Artifacts\n\nAfter the job completes, you’ll find:\n\n* A SARIF artifact named `sarif` (configurable) will be uploaded to the workflow run.\n* If `upload-sarif: 'true'`, the SARIF is also sent to **Security → Code scanning alerts** in your repo.\n\n\n## Permissions\n\n* For **artifact upload**: default permissions are fine.\n* For **Code Scanning upload**: add\n\n  ```yaml\n  permissions:\n    contents: read\n    security-events: write\n  ```\n\n\n## Troubleshooting\n\n* **\"Compilation has failed:\"** Seqra needs to compile your project to analyze bytecode. Ensure you have set up the required build tools (e.g., JDK via `actions/setup-java@v5`) before running this action. See [Prerequisites](#prerequisites).\n* **Monorepos:** You can analyze only the project you need using `project-root`.\n* **Timeouts:** If the scan times out, increase `timeout` (e.g., `30m`).\n\n\n## Changelog\nSee [CHANGELOG](CHANGELOG.md).\n\n\n## License\nThis project is released under the [MIT License](LICENSE).\n\nThe [core analysis engine](https://github.com/seqra/seqra-jvm-sast) is source-available under the [Functional Source License (FSL-1.1-ALv2)](https://fsl.software/), which converts to Apache 2.0 two years after each release. You can use Seqra for free, including for commercial use, except for competing products or services.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseqra%2Fseqra-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseqra%2Fseqra-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseqra%2Fseqra-action/lists"}