GitHub Actions 自托管运行器价格上涨推迟
GitHub Actions for Self-Hosted Runners Price Increase Postponed

原始链接: https://pricetimeline.com/news/189

## GitHub Actions 价格更新:涨价推迟 GitHub **推迟**了其针对自托管 GitHub Actions runner 的计划涨价。 原定于 2026 年 3 月 1 日生效的变更将引入每分钟 0.002 美元的费用(之前为免费)。 这一决定是在 GitHub 审查了开发者和合作伙伴的反馈后做出的,承认需要进一步讨论。 **自托管 runner 暂时仍将免费**。 重要的是,此前宣布的 **托管 runner 39% 的降价将按计划进行**。 GitHub 承诺在重新考虑自托管 runner 的定价之前,将继续与社区沟通。 用户可以通过 GitHub Actions 价格历史页面了解未来的变更,并订阅价格变更提醒。

## GitHub Actions 价格上涨暂停 GitHub 已经推迟了其计划中的自托管 GitHub Actions runners 的价格上涨,原因是收到了大量开发者的反馈。该公司表示将“重新评估其方法”并花时间倾听用户。 许多评论员认为 GitHub 意识到这些 runners 并不像最初认为的那么重要,并担心失去用户。 一些用户已经开始迁移到替代的源代码控制主机,并发现这个过程出奇地容易。 仍然存在怀疑,一些用户预测 GitHub 会在最初的反弹平息后重新引入价格上涨——这反映了其对其他有争议的变更(如 Chat Control)的处理模式。 过去 runners 存在缺陷以及 GitHub 辩称“实际成本”但问题仍然存在也引起了担忧。 虽然价格上涨已暂停,但托管 runner 的价格仍计划在 2026 年 1 月下降。
相关文章

原文

Business Uploaded by PTReporter on Dec 17, 2025

GitHub update on the postponement of the price increase for GitHub Actions for self-hosted runners to $0.002 per minute. Below is a screenshot of the update shared on X (@github).


GitHub had earlier announced in a post we published that it would increase the cost of self-hosted runners from $0.00 (free) to $0.002 per minute, starting March 1, 2026. This increase has been postponed, which means it will not apply until a new decision is made.

GitHub stated that it has canceled the price increase after reviewing developer feedback. It added that it will take time to listen to customers and partners. For now, GitHub Actions for self-hosted runners remain free.

The good news is that the 39% price reduction for hosted runners will continue as previously announced.

We will continue to monitor GitHub Actions price changes and update them on GitHub Actions Pricing history page.


Subscribe to Price Change Alerts

'; }); } function displaySearchResults(results, container) { if (!results || results.length === 0) { container.innerHTML = '

No matching services found. You can still subscribe to receive alerts for the service.

'; selectedUrlId = null; return; } let html = '
'; results.forEach((item, index) => { html += `

${item.url}

`; }); html += '
'; container.innerHTML = html; } function selectService(id, url, element) { // Remove previous selections document.querySelectorAll('.search-item').forEach(item => { item.classList.remove('selected'); }); // Select current item element.classList.add('selected'); selectedUrlId = id; // Update the input field document.getElementById('service').value = url; // Hide results setTimeout(() => { document.getElementById('search-results').innerHTML = ''; }, 200); } document.getElementById('subscriptionForm').addEventListener('submit', function(e) { e.preventDefault(); const submitBtn = document.getElementById('submitBtn'); const messageDiv = document.getElementById('message'); const service = document.getElementById('service').value.trim(); const email = document.getElementById('email').value.trim(); // Disable button and show loading submitBtn.disabled = true; submitBtn.textContent = 'Processing...'; messageDiv.className = 'message hidden'; // Prepare data const formData = { search: service, email: email, sp_hk: 'sp_hk', selected_url_id: selectedUrlId // Include selected URL ID if available }; // Submit to your API fetch('https://gutoz.com/subscription/newsletterapi.php', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(formData) }) .then(response => response.json()) .then(data => { messageDiv.className = 'message ' + (data.success ? 'success' : 'error'); messageDiv.textContent = data.success ? data.message : data.error; if (data.success) { document.getElementById('subscriptionForm').reset(); document.getElementById('search-results').innerHTML = ''; selectedUrlId = null; } }) .catch(error => { console.error('Error:', error); messageDiv.className = 'message error'; messageDiv.textContent = 'An error occurred. Please try again.'; }) .finally(() => { submitBtn.disabled = false; submitBtn.textContent = 'Subscribe to Alerts'; }); });
联系我们 contact @ memedata.com