├── .github └── workflows │ ├── build.yaml │ └── semgrep.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── docs ├── README.md └── TM-using-LLMs.05.2024.pdf ├── entrypoint.sh └── scripts └── bump-action-version.sh /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvnpw/ai-threat-modeling-action/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/semgrep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvnpw/ai-threat-modeling-action/HEAD/.github/workflows/semgrep.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvnpw/ai-threat-modeling-action/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvnpw/ai-threat-modeling-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvnpw/ai-threat-modeling-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvnpw/ai-threat-modeling-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvnpw/ai-threat-modeling-action/HEAD/action.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvnpw/ai-threat-modeling-action/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/TM-using-LLMs.05.2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvnpw/ai-threat-modeling-action/HEAD/docs/TM-using-LLMs.05.2024.pdf -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvnpw/ai-threat-modeling-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /scripts/bump-action-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvnpw/ai-threat-modeling-action/HEAD/scripts/bump-action-version.sh --------------------------------------------------------------------------------