├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.yaml └── entrypoint.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundacaocerti/mobsf-action/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundacaocerti/mobsf-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundacaocerti/mobsf-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundacaocerti/mobsf-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundacaocerti/mobsf-action/HEAD/action.yaml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundacaocerti/mobsf-action/HEAD/entrypoint.sh --------------------------------------------------------------------------------