mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
fix(datasource/github-runners): add Ubuntu 24.04 Noble Numbat as unstable (#29088)
This commit is contained in:
parent
ead5d55a49
commit
e291ef0dbd
3 changed files with 3 additions and 1 deletions
|
@ -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',
|
||||
});
|
||||
|
|
|
@ -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 },
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue