├── .github └── workflows │ ├── ci.yml │ └── component-detection.yml ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── action.ps1 ├── action.yml └── tests └── GitHubActions_tests.ps1 /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/component-detection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/.github/workflows/component-detection.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /action.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/action.ps1 -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/action.yml -------------------------------------------------------------------------------- /tests/GitHubActions_tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felickz/secret-scanning-review-action/HEAD/tests/GitHubActions_tests.ps1 --------------------------------------------------------------------------------