Do Self-Hosted Runners update themselves? #191234
-
🏷️ Discussion TypeBug 💬 Feature/Topic AreaActions Runner Discussion DetailsTwo years ago, I configured a self-hosted runner on one of our Windows Servers in our network. At that time, I believe I read that self-hosted runners will keep themselves updated. I'd like to know if my memory is correct. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
Yes, self-hosted runners do auto-update by default. Before each job runs, the runner checks GitHub for a newer version. If one is available, it downloads and installs it automatically before picking up the job. This is why you may occasionally notice a short delay before a job starts. Key details:
To check your current runner version: For Windows Server environments, make sure the runner service account has write access to the runner directory so updates can be applied successfully. |
Beta Was this translation helpful? Give feedback.
Yes, self-hosted runners do auto-update by default.
Before each job runs, the runner checks GitHub for a newer version. If one is available, it downloads and installs it automatically before picking up the job. This is why you may occasionally notice a short delay before a job starts.
Key details:
To check your current runner version:
Go to your repo/org → Settings → Actions → Runners → click on the runner name
For Windows Server environments, make sur…