├── .checkov.yaml ├── .devcontainer └── devcontainer.json ├── .gitattributes ├── .github ├── copilot-instructions.md ├── dependabot.yml ├── linters │ ├── .checkov.yaml │ ├── .markdown-lint.yml │ └── .yaml-lint.yml ├── prompts │ └── create-release-notes.prompt.md └── workflows │ ├── cd.yml │ ├── ci.yml │ ├── example.yml │ ├── linter.yml │ └── version-check.yml ├── .gitignore ├── .prettierrc.json ├── .vscode ├── mcp.json └── settings.json ├── CODEOWNERS ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml └── entrypoint.sh /.checkov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.checkov.yaml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.checkov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.github/linters/.checkov.yaml -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/linters/.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.github/linters/.yaml-lint.yml -------------------------------------------------------------------------------- /.github/prompts/create-release-notes.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.github/prompts/create-release-notes.prompt.md -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.github/workflows/example.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/version-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.github/workflows/version-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/container-prebuilt-action/HEAD/entrypoint.sh --------------------------------------------------------------------------------