├── .gitattributes ├── .github └── workflows │ ├── example-fix-commit.yaml │ ├── example-fix-pr-review.yaml │ ├── example-scan-image.yaml │ ├── example-scan.yaml │ └── release.yaml ├── ADOPTERS.md ├── CODE_OF_CONDUCT.md ├── COMMUNITY.md ├── CONTRIBUTING.md ├── Dockerfile ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── action.yml ├── entrypoint.sh ├── examples └── kubernetes-manifests │ ├── adservice.yaml │ ├── cartservice.yaml │ ├── checkoutservice.yaml │ ├── currencyservice.yaml │ ├── emailservice.yaml │ ├── frontend.yaml │ ├── loadgenerator.yaml │ ├── paymentservice.yaml │ ├── productcatalogservice.yaml │ ├── recommendationservice.yaml │ ├── redis.yaml │ └── shippingservice.yaml └── update.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/example-fix-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/.github/workflows/example-fix-commit.yaml -------------------------------------------------------------------------------- /.github/workflows/example-fix-pr-review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/.github/workflows/example-fix-pr-review.yaml -------------------------------------------------------------------------------- /.github/workflows/example-scan-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/.github/workflows/example-scan-image.yaml -------------------------------------------------------------------------------- /.github/workflows/example-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/.github/workflows/example-scan.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /ADOPTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/ADOPTERS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMMUNITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/COMMUNITY.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /examples/kubernetes-manifests/adservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/examples/kubernetes-manifests/adservice.yaml -------------------------------------------------------------------------------- /examples/kubernetes-manifests/cartservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/examples/kubernetes-manifests/cartservice.yaml -------------------------------------------------------------------------------- /examples/kubernetes-manifests/checkoutservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/examples/kubernetes-manifests/checkoutservice.yaml -------------------------------------------------------------------------------- /examples/kubernetes-manifests/currencyservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/examples/kubernetes-manifests/currencyservice.yaml -------------------------------------------------------------------------------- /examples/kubernetes-manifests/emailservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/examples/kubernetes-manifests/emailservice.yaml -------------------------------------------------------------------------------- /examples/kubernetes-manifests/frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/examples/kubernetes-manifests/frontend.yaml -------------------------------------------------------------------------------- /examples/kubernetes-manifests/loadgenerator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/examples/kubernetes-manifests/loadgenerator.yaml -------------------------------------------------------------------------------- /examples/kubernetes-manifests/paymentservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/examples/kubernetes-manifests/paymentservice.yaml -------------------------------------------------------------------------------- /examples/kubernetes-manifests/productcatalogservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/examples/kubernetes-manifests/productcatalogservice.yaml -------------------------------------------------------------------------------- /examples/kubernetes-manifests/recommendationservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/examples/kubernetes-manifests/recommendationservice.yaml -------------------------------------------------------------------------------- /examples/kubernetes-manifests/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/examples/kubernetes-manifests/redis.yaml -------------------------------------------------------------------------------- /examples/kubernetes-manifests/shippingservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/examples/kubernetes-manifests/shippingservice.yaml -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubescape/github-action/HEAD/update.sh --------------------------------------------------------------------------------