Skip to content

Commit

Permalink
fix(datasource/github-runners): add Ubuntu 24.04 Noble Numbat as unst…
Browse files Browse the repository at this point in the history
…able (#29088)
  • Loading branch information
HonkingGoose committed May 15, 2024
1 parent ead5d55 commit e291ef0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/modules/datasource/github-runners/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
});
Expand Down
1 change: 1 addition & 0 deletions lib/modules/datasource/github-runners/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/datasource/github-runners/readme.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit e291ef0

Please sign in to comment.