diff --git a/lib/modules/datasource/github-runners/index.spec.ts b/lib/modules/datasource/github-runners/index.spec.ts index f58a36a8fe9521..3d9d0ca048ba2a 100644 --- a/lib/modules/datasource/github-runners/index.spec.ts +++ b/lib/modules/datasource/github-runners/index.spec.ts @@ -15,7 +15,7 @@ describe('modules/datasource/github-runners/index', () => { { version: '18.04', isDeprecated: true }, { version: '20.04' }, { version: '22.04' }, - { version: '24.04', isStable: false }, + { version: '24.04' }, ], sourceUrl: 'https://github.com/actions/runner-images', }); diff --git a/lib/modules/datasource/github-runners/index.ts b/lib/modules/datasource/github-runners/index.ts index 71857166f0e90a..9c998e98dbd298 100644 --- a/lib/modules/datasource/github-runners/index.ts +++ b/lib/modules/datasource/github-runners/index.ts @@ -17,7 +17,7 @@ export class GithubRunnersDatasource extends Datasource { */ private static readonly releases: Record = { ubuntu: [ - { version: '24.04', isStable: false }, + { version: '24.04' }, { version: '22.04' }, { version: '20.04' }, { version: '18.04', isDeprecated: true },