{"id":19657812,"url":"https://github.com/gdatasoftwareag/github-gdata-antivirus","last_synced_at":"2026-02-12T19:04:25.120Z","repository":{"id":245822055,"uuid":"819323802","full_name":"GDATASoftwareAG/github-gdata-antivirus","owner":"GDATASoftwareAG","description":"An Antivirus that runs on Pull-Requests","archived":false,"fork":false,"pushed_at":"2025-05-12T13:25:23.000Z","size":7,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-08-16T12:22:52.749Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/GDATASoftwareAG.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,"zenodo":null}},"created_at":"2024-06-24T09:24:23.000Z","updated_at":"2025-05-12T13:23:29.000Z","dependencies_parsed_at":"2024-06-24T10:59:41.477Z","dependency_job_id":"8066d3be-6dfd-4542-8e63-ce0e04efed11","html_url":"https://github.com/GDATASoftwareAG/github-gdata-antivirus","commit_stats":null,"previous_names":["gdatasoftwareag/github-gdata-antivirus"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/GDATASoftwareAG/github-gdata-antivirus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GDATASoftwareAG%2Fgithub-gdata-antivirus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GDATASoftwareAG%2Fgithub-gdata-antivirus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GDATASoftwareAG%2Fgithub-gdata-antivirus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GDATASoftwareAG%2Fgithub-gdata-antivirus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GDATASoftwareAG","download_url":"https://codeload.github.com/GDATASoftwareAG/github-gdata-antivirus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GDATASoftwareAG%2Fgithub-gdata-antivirus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29377931,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T18:59:55.292Z","status":"ssl_error","status_checked_at":"2026-02-12T18:59:44.289Z","response_time":55,"last_error":"SSL_read: 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":"2024-11-11T15:33:47.906Z","updated_at":"2026-02-12T19:04:25.105Z","avatar_url":"https://github.com/GDATASoftwareAG.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# github-gdata-antivirus\n\nThis is a github action with that one can scan changes in pull-requests with the G DATA product Verdict-as-a-Service (VaaS). VaaS is an Antivirus in the cloud, that can be utilized by a simple api.\n\n## preconditions\n\nBefore you can use this action, you need to aquire credentials. Please find more Information on the [Verdict-as-a-Service product page](https://www.gdata.de/business/security-services/verdict-as-a-service). If you want to test VaaS on your own, you can get credentials on our [registration page](https://vaas.gdata.de/)\n\n## usage\n\n```yaml\n- name: Github G DATA Antivirus\n  uses: GDATASoftwareAG/github-gdata-antivirus@1.0.0     \n  with:\n    # You either need VAAS_CLIENT_ID (get in contact with us) or a VAAS_USERNAME (use the self registration (trial))\n    # The CLIENT_ID is the only mendatory variable\n    VAAS_CLIENT_ID: \"some-id\"\n    # A CLIENT_SECRET is only required when you got in contact with us\n    VAAS_CLIENT_SECRET: \"some-secret\"\n    # The USERNAME can be optained on our registration page\n    VAAS_USERNAME: \"some-username\"\n    # The PASSWORD can be optained on our registration page\n    VAAS_PASSWORD: \"some-password\"\n    # You can point the VAAS_URL to a self-hosted version of VaaS. If you need that, please get in contact with us.\n    VAAS_URL: \"wss://gateway.production.vaas.gdatasecurity.de/\"\n    # This is the token-endpoint of VaaS. For self-hosted versions, you need to change this url too.\n    VAAS_TOKEN_URL: \"https://account.gdata.de/realms/vaas-production/protocol/openid-connect/token\"\n```\n\n## scenarios\n\n### Self-Registered Credentials\n\n```yaml\n- name: Github G DATA Antivirus\n  uses: GDATASoftwareAG/github-gdata-antivirus@1.0.0\n  with:\n    VAAS_USERNAME: \"some-username\"\n    VAAS_PASSWORD: \"some-password\"\n```\n\n### Got a CLIENT_SECRET from us\n\n```yaml\n- name: Github G DATA Antivirus\n  uses: GDATASoftwareAG/github-gdata-antivirus@1.0.0\n  with:\n    VAAS_CLIENT_ID: \"some-id\"\n    VAAS_CLIENT_SECRET: \"some-secret\"\n```\n\n### For on Premise VaaS installations\n\n```yaml\n- name: Github G DATA Antivirus\n  uses: GDATASoftwareAG/github-gdata-antivirus@1.0.0\n  with:\n    VAAS_CLIENT_ID: \"some-id\"\n    VAAS_CLIENT_SECRET: \"some-secret\"\n    VAAS_URL: \"wss://myselfhostedvaas/\"\n    VAAS_TOKEN_URL: \"https://myselfhostedidentityprovider/realms/vaas/protocol/openid-connect/token\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgdatasoftwareag%2Fgithub-gdata-antivirus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgdatasoftwareag%2Fgithub-gdata-antivirus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgdatasoftwareag%2Fgithub-gdata-antivirus/lists"}