Skip to content
Snippets Groups Projects
Unverified Commit 1e9c00b0 authored by Michael Kriese's avatar Michael Kriese Committed by GitHub
Browse files

feat(datasource/github-runners): support ubuntu arm partner images (#33824)

parent 12a62cc0
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,9 @@ describe('modules/datasource/github-runners/index', () => {
{ version: '16.04', isDeprecated: true },
{ version: '18.04', isDeprecated: true },
{ version: '20.04', isDeprecated: true },
{ version: '22.04-arm', isStable: false },
{ version: '22.04' },
{ version: '24.04-arm', isStable: false },
{ version: '24.04' },
],
sourceUrl: 'https://github.com/actions/runner-images',
......
......@@ -14,11 +14,14 @@ export class GithubRunnersDatasource extends Datasource {
* Deprecated runners must have the `isDeprecated: true` property.
* Stable runners should have no extra properties.
* For more details, read the github-runners datasource readme.
* Check https://github.blog/changelog/label/actions/ for stable and deprecation dates.
*/
private static readonly releases: Record<string, Release[] | undefined> = {
ubuntu: [
{ version: '24.04' },
{ version: '24.04-arm', isStable: false },
{ version: '22.04' },
{ version: '22.04-arm', isStable: false },
{ version: '20.04', isDeprecated: true },
{ version: '18.04', isDeprecated: true },
{ version: '16.04', isDeprecated: true },
......
This datasource returns a list of all runners that are hosted by GitHub.
The datasource is based on [GitHub's `runner-images` repository](https://github.com/actions/runner-images).
The datasource is based on GitHub's [`runner-images`](https://github.com/actions/runner-images) and [`partner-runner-images`](https://github.com/actions/partner-runner-images) repositories.
Examples: `windows-2022` / `ubuntu-24.04` / `macos-14`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment