Skip to content

Commit

Permalink
feat(datasource/github-runners): deprecate Ubuntu 20.04 (#33139)
Browse files Browse the repository at this point in the history
  • Loading branch information
HonkingGoose authored Dec 16, 2024
1 parent d6bf458 commit 365acff
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 @@ -13,7 +13,7 @@ describe('modules/datasource/github-runners/index', () => {
releases: [
{ version: '16.04', isDeprecated: true },
{ version: '18.04', isDeprecated: true },
{ version: '20.04' },
{ version: '20.04', isDeprecated: true },
{ version: '22.04' },
{ version: '24.04' },
],
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 @@ -19,7 +19,7 @@ export class GithubRunnersDatasource extends Datasource {
ubuntu: [
{ version: '24.04' },
{ version: '22.04' },
{ version: '20.04' },
{ version: '20.04', isDeprecated: true },
{ version: '18.04', isDeprecated: true },
{ version: '16.04', isDeprecated: true },
],
Expand Down

0 comments on commit 365acff

Please sign in to comment.