mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 22:46:27 +00:00
feat(datasource/github-runners): add macOS 15 beta images (#31629)
This commit is contained in:
parent
5ce54a33d8
commit
927e6056a5
2 changed files with 10 additions and 1 deletions
|
@ -39,6 +39,9 @@ describe('modules/datasource/github-runners/index', () => {
|
||||||
{ version: '14-xlarge' },
|
{ version: '14-xlarge' },
|
||||||
{ version: '14-large' },
|
{ version: '14-large' },
|
||||||
{ version: '14' },
|
{ version: '14' },
|
||||||
|
{ version: '15-xlarge', isStable: false },
|
||||||
|
{ version: '15-large', isStable: false },
|
||||||
|
{ version: '15', isStable: false },
|
||||||
],
|
],
|
||||||
sourceUrl: 'https://github.com/actions/runner-images',
|
sourceUrl: 'https://github.com/actions/runner-images',
|
||||||
});
|
});
|
||||||
|
|
|
@ -10,7 +10,10 @@ export class GithubRunnersDatasource extends Datasource {
|
||||||
'We use the URL: https://github.com/actions/runner-images.';
|
'We use the URL: https://github.com/actions/runner-images.';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Only add stable runners to the datasource. See datasource readme for details.
|
* Unstable runners must have the `isStable: false` property.
|
||||||
|
* Deprecated runners must have the `isDeprecated: true` property.
|
||||||
|
* Stable runners should have no extra properties.
|
||||||
|
* For more details, read the github-runners datasource readme.
|
||||||
*/
|
*/
|
||||||
private static readonly releases: Record<string, Release[] | undefined> = {
|
private static readonly releases: Record<string, Release[] | undefined> = {
|
||||||
ubuntu: [
|
ubuntu: [
|
||||||
|
@ -21,6 +24,9 @@ export class GithubRunnersDatasource extends Datasource {
|
||||||
{ version: '16.04', isDeprecated: true },
|
{ version: '16.04', isDeprecated: true },
|
||||||
],
|
],
|
||||||
macos: [
|
macos: [
|
||||||
|
{ version: '15', isStable: false },
|
||||||
|
{ version: '15-large', isStable: false },
|
||||||
|
{ version: '15-xlarge', isStable: false },
|
||||||
{ version: '14' },
|
{ version: '14' },
|
||||||
{ version: '14-large' },
|
{ version: '14-large' },
|
||||||
{ version: '14-xlarge' },
|
{ version: '14-xlarge' },
|
||||||
|
|
Loading…
Reference in a new issue