v58

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-08-061,4651,08313.4 MB
enterprise-admin

Get runner version end-of-life schedule for an enterprise

Gets the end-of-life schedule for a specific runner version in an enterprise. Returns the runner version and the dates when registration and runtime support will end.

OAuth app tokens and personal access tokens (classic) need the manage_runners:enterprise scope to use this endpoint.

get/enterprises/{enterprise}/actions/runners/deprecations/{version}

Path parameters

enterprisestring required

The slug version of the enterprise name.

versionstring required

The runner version to look up.

Response

Response

runner_versionstring required

The runner version string.

registration_deprecates_atstring date-time nullable

The date after which this runner version can no longer register. Null if no schedule is set.

runtime_deprecates_atstring date-time nullable

The date after which jobs will no longer be dispatched to runners on this version.

Example response

{
  "runner_version": "2.300.0",
  "registration_deprecates_at": "2026-08-01T00:00:00Z",
  "runtime_deprecates_at": "2026-09-01T00:00:00Z"
}