{"id":20882011,"url":"https://github.com/weaveworks/weave-action","last_synced_at":"2026-04-22T11:34:36.245Z","repository":{"id":39796269,"uuid":"494425009","full_name":"weaveworks/weave-action","owner":"weaveworks","description":"Weaveworks GitHub Actions","archived":false,"fork":false,"pushed_at":"2023-06-01T13:30:40.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-12-29T08:19:30.613Z","etag":null,"topics":["actions","github"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"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/weaveworks.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-05-20T10:44:23.000Z","updated_at":"2023-10-06T20:45:56.000Z","dependencies_parsed_at":"2024-11-15T22:20:54.722Z","dependency_job_id":"7d6c6d4f-8411-471f-ac76-83acc4e9d8ea","html_url":"https://github.com/weaveworks/weave-action","commit_stats":{"total_commits":10,"total_committers":4,"mean_commits":2.5,"dds":0.6,"last_synced_commit":"f97ad5d77d62b531c12c7682816ae3ff48dfa2da"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/weaveworks/weave-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaveworks%2Fweave-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaveworks%2Fweave-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaveworks%2Fweave-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaveworks%2Fweave-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/weaveworks","download_url":"https://codeload.github.com/weaveworks/weave-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weaveworks%2Fweave-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32134459,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T08:34:57.708Z","status":"ssl_error","status_checked_at":"2026-04-22T08:34:55.583Z","response_time":58,"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":["actions","github"],"created_at":"2024-11-18T07:28:36.443Z","updated_at":"2026-04-22T11:34:36.209Z","avatar_url":"https://github.com/weaveworks.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Weaveworks GitHub Action\n\nEnforce cloud security and best practices at the build and deployment time.\n\n## Supported Kustomizations\n- [x] [Helm](https://helm.sh)\n- [x] [Kustomize](https://kustomize.io)\n\n\n## Usage\n\n| Parameter                     | Description                                                           | Required  | Default |\n| ----------------------------- | --------------------------------------------------------------------- | --------- | ------- |\n| `path`                        | Path to Kustomization, Helm Chart or plain Kubernetes files           |    Yes    |    -    |\n| `helm-values-file`            | Path to resources helm values file                                    |    No     |    -    |\n| `policies-path`               | Path to policies Kustomization, Helm Chart or plain Kubernetes files  |    Yes    |    -    |\n| `policies-helm-values-file`   | Path to policies helm values file                                     |    No     |    -    |\n| `remediate`                   | Automatically remediate resources if possible                         |    No     |  false  |\n| `sarif-file`                  | Export result in sarif format                                         |    No     |    -    |\n\n\n```yaml\nname: Weaveworks\non:\n  push:\n    branches: [ master ]\njobs:\n  main:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - uses: weaveworks/weave-action@v1\n        with:\n          path: entities-to-scan\n          policies-path: policies\n          remediate: true # enable auto remediation\n          sarif-file: results.sarif ## export result in SARF format to send it to github code scanning\n\n      # send results to github code scanning\n      - uses: github/codeql-action/upload-sarif@v2\n        if: always()\n        with:\n          sarif_file: results.sari\n```\n\n## Examples\n\n### Using Remote Policies Repository\n```yaml\n- run: git clone https://github.com/\u003cowner\u003e/\u003crepository\u003e -b \u003cbranch\u003e\n- uses: weaveworks/weave-action@v1\n  with:\n    path: helm/\n    helm-values-file: helm/dev-values.yaml\n    policies-path: \u003crepository\u003e/\u003cpath to policies kustomization directory\u003e\n```\n\n### Enable Auto Remediation\n```yaml\n- uses: weaveworks/weave-action@v1\n  with:\n    path: helm/\n    helm-values-file: helm/dev-values.yaml\n    policies-path: policies\n    remediate: true # enable auto remediation\n```\n\n\n### Enable Github Code Scanning\n```yaml\n- uses: weaveworks/weave-action@v1\n  with:\n    path: helm/\n    helm-values-file: helm/dev-values.yaml\n    policies-path: policies\n    sarif-file: results.sarif # export result into SARIF format\n\n# upload results to github\n- uses: github/codeql-action/upload-sarif@v2\n  if: always()\n  with:\n    sarif_file: results.sarif\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweaveworks%2Fweave-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fweaveworks%2Fweave-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweaveworks%2Fweave-action/lists"}