{"id":29668031,"url":"https://github.com/advanced-security/codeql-extractor-action","last_synced_at":"2026-03-09T20:31:59.105Z","repository":{"id":292391107,"uuid":"932882373","full_name":"advanced-security/codeql-extractor-action","owner":"advanced-security","description":"CodeQL Extractor Action","archived":false,"fork":false,"pushed_at":"2025-06-13T16:12:15.000Z","size":317,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-13T16:58:18.260Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/advanced-security.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2025-02-14T17:37:57.000Z","updated_at":"2025-06-13T16:05:45.000Z","dependencies_parsed_at":"2025-05-09T18:23:05.496Z","dependency_job_id":"30f8ffb0-b2cb-46f2-8459-bbd31eabecd2","html_url":"https://github.com/advanced-security/codeql-extractor-action","commit_stats":null,"previous_names":["advanced-security/codeql-extractor-action"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/advanced-security/codeql-extractor-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/advanced-security%2Fcodeql-extractor-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/advanced-security%2Fcodeql-extractor-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/advanced-security%2Fcodeql-extractor-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/advanced-security%2Fcodeql-extractor-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/advanced-security","download_url":"https://codeload.github.com/advanced-security/codeql-extractor-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/advanced-security%2Fcodeql-extractor-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266535695,"owners_count":23944275,"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-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":[],"created_at":"2025-07-22T17:05:48.775Z","updated_at":"2026-03-09T20:31:59.049Z","avatar_url":"https://github.com/advanced-security.png","language":"Rust","readme":"\u003c!-- markdownlint-disable --\u003e\n\u003cdiv align=\"center\"\u003e\n\u003ch1\u003eCodeQL Extractor Action\u003c/h1\u003e\n\n[![GitHub](https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge\u0026logo=github\u0026logoColor=white)][github]\n[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/advanced-security/codeql-extractor-action/build.yml?style=for-the-badge)][github-actions]\n[![GitHub Issues](https://img.shields.io/github/issues/advanced-security/codeql-extractor-action?style=for-the-badge)][github-issues]\n[![GitHub Stars](https://img.shields.io/github/stars/advanced-security/codeql-extractor-action?style=for-the-badge)][github]\n[![Licence](https://img.shields.io/github/license/Ileriayo/markdown-badges?style=for-the-badge)][license]\n\n\u003c/div\u003e\n\u003c!-- markdownlint-restore --\u003e\n\n## Overview\n\n[CodeQL Extractor Action][github] is a GitHub Action that allows you to specify a CodeQL extractor to be used in your workflows as an author of an Extractor.\nThis action is designed to be used in conjunction with the [CodeQL][CodeQL] analysis tool, which is a powerful static analysis tool that can be used to find vulnerabilities in your code.\n\n\u003e [!WARNING]\n\u003e This action downloads the extractor from the GitHub repository. Make sure to use a trusted repository, owner, and extractor.\n\n## ✨ Features\n\n- **Easy to use**: The action is designed to be simple and easy to integrate into your existing GitHub Actions workflows.\n- **End-to-end workflow**: The action provides end-to-end workflow for extracting code from your repository and running CodeQL analysis.\n- **Customizable**: The action allows you to customize the extraction process to fit your specific needs.\n\n## Usage\n\n```yml\n- name: \"CodeQL Extractor Action\"\n  uses: advanced-security/codeql-extractor-action@v0.1.0\n  with:\n    # Repository reference (e.g. \"owner/repo\", \"owner/repo@ref\")\n    extractor: \"advanced-security/codeql-extractor-iac\"\n    # [optional]: Language(s) used to verify the extractor\n    languages: \"iac\"\n    # [optional] Attest the authenticity of the extractor\n    attestation: true\n```\n\n## Q\u0026A\n\n**Whats is an Extractor?**\n\nA CodeQL extractor is a tool that extracts code from a repository and prepares it for analysis by the CodeQL engine. It is used to convert the code into a format that can be analyzed by CodeQL.\n\n**How do I create an Extractor?**\n\nTo create an extractor, you need to create a GitHub repository that contains the extractor releases as an artifact / assest in a GitHub release.\nThe extractor should be a Tarball file that contains the compiled extractor and all other necessary files for the extractor to run.\n\n## Maintainers\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"10%\"\u003e\u003ca href=\"https://geekmasher.dev\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/2772944?v=3?s=100\" width=\"100px;\" alt=\"Mathew Payne\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMathew Payne\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/advanced-security/codeql-extractor-iac/commits?author=geekmasher\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#research-geekmasher\" title=\"Research\"\u003e🔬\u003c/a\u003e \u003ca href=\"#maintenance-geekmasher\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"#security-geekmasher\" title=\"Security\"\u003e🛡️\u003c/a\u003e \u003ca href=\"#ideas-geekmasher\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\n## Support\n\nPlease create [GitHub Issues][github-issues] or [GitHub Discussion][github-discussions] if there are bugs or feature requests.\n\nThis project uses [Sematic Versioning (v2)](https://semver.org/) and with major releases, breaking changes will occur.\n\n## License\n\nThis project is licensed under the terms of the MIT open source license.\nPlease refer to [MIT][license] for the full terms.\n\n\u003c!-- Resoucres --\u003e\n\n[license]: ./LICENSE\n[github]: https://github.com/advanced-security/codeql-extractor-action\n[github-issues]: https://github.com/advanced-security/codeql-extractor-action/issues\n[github-actions]: https://github.com/advanced-security/codeql-extractor-action/actions\n[github-discussions]: https://github.com/advanced-security/codeql-extractor-action/discussions\n[CodeQL]: https://codeql.github.com/\n","funding_links":[],"categories":["CodeQL Extractor Helpers"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadvanced-security%2Fcodeql-extractor-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadvanced-security%2Fcodeql-extractor-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadvanced-security%2Fcodeql-extractor-action/lists"}