Job Container - CI/CD用語集の定義
job containerは、一貫したツールチェーンのために、job全体を指定したDockerイメージの中で実行させます。
job containerとは、container:キーで指定されるDockerイメージであり、GitHub Actionsのjob全体がその中で実行され、各stepがrunner上で直接ではなくそのイメージ内で動作します。
stepはcontainerのファイルシステムと環境の中で実行され、言語やシステムの依存関係を固定します。依存関係としてjobと並んで実行されるservice containerとは異なります。
関連ガイド
Composite Action - CI/CD Glossary DefinitionComposite Action: A composite action is a custom action defined with `runs.using: composite` that bundles mul…
Health Check Endpoint - CI/CD Glossary DefinitionHealth Check Endpoint: A health check endpoint is an HTTP route (often `/healthz`) that returns whether a ser…