GitHub ホステッドランナー - CI/CD用語集の定義
GitHub ホステッドランナーとは、job ごとにプロビジョニングされ、その後破棄される、GitHub が管理するクリーンな VM です。
GitHub ホステッドランナーとは、GitHub が job ごとにプロビジョニングして破棄する新しい仮想マシンであり、一般的な build ツールがプリロードされているため、分単位で支払い、基盤となるインフラを管理することはありません。
GitHub ホステッドランナー (ubuntu-latest、windows-latest、macos-latest などの label) には保守されたソフトウェアイメージが付属し、分単位で課金されます。各 job は新しい VM を取得するため、実行間で状態が引き継がれることはありません。
課金に関する注意
ホステッドランナーの分数はリポジトリの可視性とマシンサイズごとに計測されます。Linux ランナーは基本レートで課金される一方、Windows と macOS のランナーには乗数がかかるため、特に macOS の使用量に注意してください。
関連ガイド
Self-Hosted Runner (GitHub Actions) - CI/CD Glossary DefinitionSelf-Hosted Runner (GitHub Actions): A self-hosted runner is a machine you own and register with GitHub Actio…
runs-on - CI/CD Glossary Definitionruns-on: runs-on is the required job key that selects which runner executes the job, either by hosted label l…