fix(datasource/github-runners): add Ubuntu 24.04 Noble Numbat as unstable (#29088)

This commit is contained in:
HonkingGoose 2024-05-15 10:42:00 +02:00 committed by GitHub
parent ead5d55a49
commit e291ef0dbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 1 deletions

View file

@ -15,6 +15,7 @@ describe('modules/datasource/github-runners/index', () => {
{ version: '18.04', isDeprecated: true },
{ version: '20.04' },
{ version: '22.04' },
{ version: '24.04', isStable: false },
],
sourceUrl: 'https://github.com/actions/runner-images',
});

View file

@ -10,6 +10,7 @@ export class GithubRunnersDatasource extends Datasource {
*/
private static readonly releases: Record<string, Release[] | undefined> = {
ubuntu: [
{ version: '24.04', isStable: false },
{ version: '22.04' },
{ version: '20.04' },
{ version: '18.04', isDeprecated: true },

View file

@ -1,7 +1,7 @@
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).
Examples: `windows-2022` / `ubuntu-22.04` / `macos-14`
Examples: `windows-2022` / `ubuntu-24.04` / `macos-14`
## Maintenance