{"id":19873059,"url":"https://github.com/checkpointsw/spectral-github-action","last_synced_at":"2025-08-03T00:07:38.395Z","repository":{"id":235774156,"uuid":"773386017","full_name":"CheckPointSW/spectral-github-action","owner":"CheckPointSW","description":"Automated Secrets, Misconfiguration, IaC Misconfiguration detection, and OSS by Check Point CloudGuard","archived":false,"fork":false,"pushed_at":"2024-04-24T10:34:10.000Z","size":209,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-01T00:59:44.617Z","etag":null,"topics":["codesecurity","iac","oss","sbom","secrets-detection"],"latest_commit_sha":null,"homepage":"https://guides.spectralops.io","language":"JavaScript","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/CheckPointSW.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2024-03-17T14:24:54.000Z","updated_at":"2024-10-11T01:53:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"d034c6dd-f21f-49f2-914b-f40e584127e2","html_url":"https://github.com/CheckPointSW/spectral-github-action","commit_stats":null,"previous_names":["checkpointsw/spectral-github-action"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/CheckPointSW/spectral-github-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckPointSW%2Fspectral-github-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckPointSW%2Fspectral-github-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckPointSW%2Fspectral-github-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckPointSW%2Fspectral-github-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CheckPointSW","download_url":"https://codeload.github.com/CheckPointSW/spectral-github-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckPointSW%2Fspectral-github-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268475669,"owners_count":24256153,"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","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["codesecurity","iac","oss","sbom","secrets-detection"],"created_at":"2024-11-12T16:17:41.588Z","updated_at":"2025-08-03T00:07:38.337Z","avatar_url":"https://github.com/CheckPointSW.png","language":"JavaScript","readme":"\u003cp\u003e\n    \u003cbr/\u003e\n    \u003cbr/\u003e\n    \u003cp align=\"center\"\u003e\n    \u003ca href=\"http://checkpoint.com\"\u003e \n        \u003cimg alt=\"CheckPoint logo\" src=\"./cp_logo.svg\" width=\"90\"/\u003e\n    \u003c/a\u003e\n    \u003ca href=\"http://spectralops.io\"\u003e \n        \u003cimg alt=\"SpectralOps logo\" src=\"./spectral_logo.svg\" width=\"300\"/\u003e\n    \u003c/a\u003e\n    \u003c/p\u003e\n    \u003cp align=\"center\"\u003e\n        \u003cimg src=\"https://github.com/spectralops/spectral-github-action/actions/workflows/main.yml/badge.svg\"/\u003e\n        \u003cimg src=\"https://img.shields.io/badge/license-MIT-brightgreen\"/\u003e\n    \u003c/p\u003e\n\u003c/p\u003e\n\n# CloudGuard Code Security\nSpectral is the shift-left solution of Check Point’s CloudGuard to provide the industry’s most comprehensive security platform from code to cloud. Spectral was built as a platform from the ground up to have a fantastic developer experience (DX). Spectral Scan is a single self-contained binary, that's easy to get and use.\n\n## Example usage\nInclude this Action as a step in your workflow:\n\n```\nuses: checkpointsw/spectral-github-action@v4\nwith:\n  spectral-dsn: $SPECTRAL_DSN\n  spectral-args: scan --ok\n```\n\n[Review Action Usage Example](.github/workflows/main.yml)\n\n## Configuration\nYou'll need to provide Spectral DSN as an input variable. You should always store your DSN in a secure way, like below in [GitHub secrets](https://docs.github.com/en/actions/security-guides/encrypted-secrets).\n\n```yaml\nname: Spectral\n\non: [push]\n\njobs:\n  scan:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - name: Install and run Spectral CI\n        uses: checkpointsw/spectral-github-action@v4\n        with:\n          spectral-dsn: ${{ secrets.SPECTRAL_DSN }}\n          spectral-args: scan --ok\n```\n\nSpectral provides another scan option to audit your GitHub/GitLab organization, user or repo.\n\n```yaml\nname: Spectral\n\non: [push]\n\njobs:\n  scan:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - name: Install and run Spectral Audit\n        uses: checkpointsw/spectral-github-action@v4\n        with:\n          spectral-dsn: ${{ secrets.SPECTRAL_DSN }}\n          spectral-args: github -k repo -t ${{ secrets.MY_GITHUB_TOKEN }} https://github.com/checkpointsw/spectral-github-action --include-tags base,audit --ok\n```\n\n### How to Contribute\nWe welcome [issues](https://github.com/checkpointsw/spectral-github-action/issues) to and [pull requests](https://github.com/checkpointsw/spectral-github-action/pulls) against this repository!\n\n## Resources\n- [Solution Review](https://www.checkpoint.com/cloudguard/developer-security/)\n- [Documentation](https://guides.spectralops.io/docs)\n\n## License\nThis project is licensed under the MIT License. See [LICENSE](LICENSE) for further details.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcheckpointsw%2Fspectral-github-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcheckpointsw%2Fspectral-github-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcheckpointsw%2Fspectral-github-action/lists"}