Skip to content

Commit

Permalink
feat(github-runners): mark ubuntu 24.04 as stable (#31619)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome authored Sep 26, 2024
1 parent 5f0c43d commit 5e86717
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/modules/datasource/github-runners/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
});
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/datasource/github-runners/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class GithubRunnersDatasource extends Datasource {
*/
private static readonly releases: Record<string, Release[] | undefined> = {
ubuntu: [
{ version: '24.04', isStable: false },
{ version: '24.04' },
{ version: '22.04' },
{ version: '20.04' },
{ version: '18.04', isDeprecated: true },
Expand Down

0 comments on commit 5e86717

Please sign in to comment.